-
Notifications
You must be signed in to change notification settings - Fork 1
/
FileLoadOptions.xaml
40 lines (40 loc) · 1.32 KB
/
FileLoadOptions.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
<Window
x:Class="SheetReader.Wpf.Test.FileLoadOptions"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Load Options"
ResizeMode="NoResize"
SizeToContent="WidthAndHeight"
WindowStartupLocation="CenterOwner">
<Grid MinWidth="260" MinHeight="70">
<Label
Margin="10,10,0,0"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Content="First Row Is Header:" />
<CheckBox
Margin="130,16,90,0"
HorizontalAlignment="Left"
VerticalAlignment="Top"
VerticalContentAlignment="Center"
IsChecked="{Binding FirstRowDefinesColumns}" />
<Button
Width="75"
Height="23"
Margin="0,0,90,10"
HorizontalAlignment="Right"
VerticalAlignment="Bottom"
Click="OnOKClick"
Content="_OK"
IsDefault="True" />
<Button
Width="75"
Height="23"
Margin="0,40,10,10"
HorizontalAlignment="Right"
VerticalAlignment="Bottom"
Click="OnCancelClick"
Content="Cancel"
IsCancel="True" />
</Grid>
</Window>