|
56 | 56 | <RowDefinition/>
|
57 | 57 | </Grid.RowDefinitions>
|
58 | 58 |
|
59 |
| - <TextBlock Grid.Column="0" Grid.Row="0" Margin="0,0,15,0" FontSize="14"> |
60 |
| - <Run>Server URL:</Run> |
61 |
| - <Run Text="" |
| 59 | + <StackPanel Orientation="Horizontal" Grid.Column="0" Grid.Row="0"> |
| 60 | + <TextBlock FontSize="14">Server URL:</TextBlock> |
| 61 | + |
| 62 | + <Button Grid.Column="1" Grid.Row="0" |
| 63 | + Background="White" |
| 64 | + FontSize="14" |
| 65 | + Margin="5,0" |
| 66 | + BorderThickness="0" |
| 67 | + Padding="3" |
| 68 | + Cursor="Hand" |
| 69 | + Click="ShowServerUrlHelp"> |
| 70 | + <TextBlock Text="" |
62 | 71 | FontWeight="Bold"
|
63 | 72 | FontFamily="Segoe MDL2 Assets"
|
64 |
| - Cursor="Hand" |
65 |
| - ToolTip="This is the URL of the server that your device will connect to after Remotely is installed."></Run> |
66 |
| - </TextBlock> |
| 73 | + PreviewMouseUp="ShowServerUrlHelp"></TextBlock> |
| 74 | + </Button> |
| 75 | + </StackPanel> |
| 76 | + |
| 77 | + |
67 | 78 | <TextBox Grid.Column="1" Grid.Row="0" TextWrapping="Wrap" Text="{Binding ServerUrl}" FontSize="14" />
|
68 | 79 |
|
69 |
| - <TextBlock Grid.Column="0" Grid.Row="2" Margin="0,0,15,0" FontSize="14"> |
70 |
| - <Run>Organization ID:</Run> |
71 |
| - <Run Text="" |
| 80 | + <StackPanel Orientation="Horizontal" Grid.Column="0" Grid.Row="2"> |
| 81 | + <TextBlock FontSize="14">Organization ID</TextBlock> |
| 82 | + |
| 83 | + <Button Grid.Column="1" Grid.Row="0" |
| 84 | + Background="White" |
| 85 | + FontSize="14" |
| 86 | + Margin="5,0" |
| 87 | + BorderThickness="0" |
| 88 | + Padding="3" |
| 89 | + Cursor="Hand" |
| 90 | + Click="ShowOrganizationIdHelp"> |
| 91 | + <TextBlock Text="" |
72 | 92 | FontWeight="Bold"
|
73 |
| - FontFamily="Segoe MDL2 Assets" |
74 |
| - Cursor="Hand" |
75 |
| - ToolTip="Enter the organization ID that will have access to this device."></Run> |
76 |
| - </TextBlock> |
| 93 | + FontFamily="Segoe MDL2 Assets"></TextBlock> |
| 94 | + </Button> |
| 95 | + </StackPanel> |
| 96 | + |
77 | 97 | <TextBox Grid.Column="1" Grid.Row="2" TextWrapping="Wrap" Text="{Binding OrganizationID}" FontSize="14" />
|
78 | 98 |
|
79 |
| - <TextBlock Grid.Column="0" Grid.Row="4" Margin="0,0,15,0" FontSize="14"> |
80 |
| - <Run>Support Shortcut:</Run> |
81 |
| - <Run Text="" |
| 99 | + <StackPanel Orientation="Horizontal" Grid.Column="0" Grid.Row="4"> |
| 100 | + <TextBlock FontSize="14">Support Shortcut</TextBlock> |
| 101 | + |
| 102 | + <Button Grid.Column="1" Grid.Row="0" |
| 103 | + Background="White" |
| 104 | + FontSize="14" |
| 105 | + Margin="5,0" |
| 106 | + BorderThickness="0" |
| 107 | + Padding="3" |
| 108 | + Cursor="Hand" |
| 109 | + Click="ShowSupportShortcutHelp"> |
| 110 | + <TextBlock Text="" |
82 | 111 | FontWeight="Bold"
|
83 |
| - FontFamily="Segoe MDL2 Assets" |
84 |
| - Cursor="Hand" |
85 |
| - ToolTip="Create a desktop shortcut to the Get Support page for this device."></Run> |
86 |
| - </TextBlock> |
87 |
| - <CheckBox Grid.Column="1" Grid.Row="4" IsChecked="{Binding CreateSupportShortcut}" /> |
| 112 | + FontFamily="Segoe MDL2 Assets"></TextBlock> |
| 113 | + </Button> |
| 114 | + </StackPanel> |
| 115 | + <CheckBox Grid.Column="1" Grid.Row="4" VerticalAlignment="Center" IsChecked="{Binding CreateSupportShortcut}" /> |
88 | 116 |
|
89 | 117 | </Grid>
|
90 | 118 |
|
|
0 commit comments