-
Notifications
You must be signed in to change notification settings - Fork 1
/
PasswordWindow.xaml
27 lines (27 loc) · 1.39 KB
/
PasswordWindow.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
<Window x:Class="Personal_Genome_Explorer.PasswordWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Data file password" SizeToContent="WidthAndHeight" ResizeMode="NoResize">
<Grid Margin="10,10,10,10">
<StackPanel>
<Grid Margin="2,2,2,2">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<Label Grid.Column="0" Name="label2" Tag="{x:Null}">Password</Label>
<PasswordBox Grid.Column="1" Name="passwordTextBox" ToolTip="Enter your data file password here" VerticalAlignment="Center" Width="200" />
</Grid>
<Grid Margin="2,2,2,2">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="85" />
<ColumnDefinition Width="10" />
<ColumnDefinition Width="85" />
</Grid.ColumnDefinitions>
<Button Grid.Row="0" Grid.Column="1" Name="cancelButton" Width="85" IsCancel="True">Cancel</Button>
<Button Grid.Row="0" Grid.Column="3" Name="okButton" Width="85" IsDefault="True">OK</Button>
</Grid>
</StackPanel>
</Grid>
</Window>