回答編集履歴
1
見直しキャンペーン中
test
CHANGED
@@ -1,47 +1,24 @@
|
|
1
1
|
[c# - Open local PDF at specific page in default viewer - Stack Overflow](https://stackoverflow.com/questions/62385778/open-local-pdf-at-specific-page-in-default-viewer)
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
上記質問で
|
3
|
+
上記質問でGoogle Chromeならできているようなので試したところ、2ページ目で開きました。
|
6
|
-
|
7
|
-
ならば新しいEdge(いわゆる
|
4
|
+
ならば新しいEdge(いわゆるChromiumEdge)も行けるだろうと試したら、予想通り成功しました。
|
8
|
-
|
9
|
-
|
10
5
|
|
11
6
|
開くアプリを限定してしまいますが、お手軽度は高いです。
|
12
7
|
|
13
|
-
|
14
|
-
|
15
|
-
```
|
8
|
+
```cs
|
16
|
-
|
17
9
|
using System.Diagnostics;
|
18
10
|
|
19
|
-
|
20
|
-
|
21
11
|
namespace Questions298143
|
22
|
-
|
23
12
|
{
|
24
|
-
|
25
13
|
class Program
|
26
|
-
|
27
14
|
{
|
28
|
-
|
29
15
|
static void Main()
|
30
|
-
|
31
16
|
{
|
32
|
-
|
33
17
|
Process.Start("chrome", @"file://C:\example.pdf#page=2");
|
34
|
-
|
35
18
|
Process.Start("msedge", @"file://C:\example.pdf#page=2");
|
36
|
-
|
37
19
|
}
|
38
|
-
|
39
20
|
}
|
40
|
-
|
41
21
|
}
|
42
|
-
|
43
22
|
```
|
44
23
|
|
45
|
-
|
46
|
-
|
47
24
|
`file:///`が正しいのかもしれませんが、`/`の数は見ていなそうでした^^;
|