-
Notifications
You must be signed in to change notification settings - Fork 1
/
ProgramPrompt.xaml
79 lines (73 loc) · 2.11 KB
/
ProgramPrompt.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<Window x:Class="App_Launcher.ProgramPrompt"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:App_Launcher"
mc:Ignorable="d"
x:Name="ProgramInformation"
Title="Program Information"
Icon="app-launcher-icon.ico"
Height="150"
Width="400"
WindowStartupLocation="CenterOwner"
ResizeMode="NoResize"
ShowInTaskbar="False"
TextOptions.TextFormattingMode="Display">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="*" />
<RowDefinition Height="*" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="50" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<TextBlock Text="Name:"
FontFamily="Segoe UI"
FontSize="12"
VerticalAlignment="Center"
HorizontalAlignment="Center"/>
<TextBlock Text="Path:"
FontFamily="Segoe UI"
FontSize="12"
VerticalAlignment="Center"
HorizontalAlignment="Center"
Grid.Row="1"/>
<TextBox x:Name="ProgramName"
FontFamily="Segoe UI"
FontSize="12"
VerticalAlignment="Center"
VerticalContentAlignment="Center"
Grid.Column="1"
Padding="5"
Margin="5"/>
<TextBox x:Name="ProgramPath"
FontFamily="Segoe UI"
FontSize="12"
VerticalAlignment="Center"
VerticalContentAlignment="Center"
Grid.Column="1"
Grid.Row="1"
Padding="5"
Margin="5"
Cursor="Hand"
Focusable="False"
Background="WhiteSmoke"
PreviewMouseLeftButtonDown="SelectProgram"/>
<Button Content="Confirm"
FontFamily="Segoe UI"
FontSize="12"
VerticalAlignment="Center"
HorizontalAlignment="Right"
Grid.Column="1"
Grid.Row="2"
Padding="10,4"
Margin="5"
Background="Transparent"
Cursor="Hand"
Focusable="False"
PreviewMouseLeftButtonDown="ConfirmProgram"/>
</Grid>
</Window>