回答編集履歴

1

見直しキャンペーン中

2023/07/23 04:23

投稿

TN8001
TN8001

スコア9862

test CHANGED
@@ -1,45 +1,24 @@
1
1
  VBでの例がありました。
2
-
3
2
  [url - WPF - Making hyperlinks clickable - Stack Overflow](https://stackoverflow.com/questions/861409/wpf-making-hyperlinks-clickable/8776438#8776438)
4
3
 
5
-
6
-
7
4
  正規表現にこだわりがあるようで、かなり厳しい設定になっています。
8
-
9
5
  認識しないURLもあり、調整がいるかもしれません(最近の割と何でもありなトップレベルドメイン)
10
6
 
11
7
 
12
-
13
-
14
-
15
- ```xaml
8
+ ```xml
16
-
17
9
  <Window
18
-
19
10
  x:Class="MainWindow"
20
-
21
11
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
22
-
23
12
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
24
-
25
13
  xmlns:local="clr-namespace:Questions285266"
26
-
27
14
  Width="800"
28
-
29
15
  Height="450">
30
-
31
16
  <StackPanel>
32
-
33
17
  <TextBlock local:NavigationService.Text="文章中のhttp://www.google.comです 文章中のhttp://www.google.comです" />
34
18
 
35
-
36
-
37
19
  <TextBox x:Name="textBox" Text="もちろんバインドもOKhttp://www.google.com" />
38
-
39
20
  <TextBlock local:NavigationService.Text="{Binding Text, ElementName=textBox}" />
40
-
41
21
  </StackPanel>
42
-
43
22
  </Window>
44
-
45
23
  ```
24
+ ![アプリ画像](https://ddjkaamml8q8x.cloudfront.net/questions/2023-07-23/8e25fd7b-2838-4552-b600-6d40caef37e3.png)