-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInputDialog.xaml
More file actions
56 lines (54 loc) · 1.7 KB
/
InputDialog.xaml
File metadata and controls
56 lines (54 loc) · 1.7 KB
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
<Window
x:Class="XboxExplorerKiller.InputDialog"
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:local="clr-namespace:XboxExplorerKiller"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Title="InputDialog"
Width="240"
Height="Auto"
ResizeMode="NoResize"
SizeToContent="Height"
WindowStartupLocation="CenterOwner"
mc:Ignorable="d">
<Grid Margin="8,8,8,8">
<Grid.RowDefinitions>
<RowDefinition Height="1*" />
<RowDefinition Height="28px" />
<RowDefinition Height="24px" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<TextBlock
x:Name="InputDialogMessage"
Grid.Row="0"
Grid.ColumnSpan="2"
Margin="0,0,0,8"
Text="Default Input Message"
TextWrapping="Wrap" />
<Button
Grid.Row="3"
Grid.RowSpan="2"
Margin="0,0,4,0"
Click="Yes_Button_Click"
Content="Confirm"
IsDefault="true" />
<Button
Grid.Row="3"
Grid.RowSpan="2"
Grid.Column="1"
Margin="4,0,0,0"
Content="Cancel"
IsCancel="True" />
<TextBox
x:Name="InputDialogUserInput"
Grid.Row="1"
Grid.ColumnSpan="2"
Margin="0,0,0,8"
Text="TextBox"
TextWrapping="Wrap" />
</Grid>
</Window>