-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWizard.xaml
45 lines (45 loc) · 1.45 KB
/
Wizard.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
<Window
x:Class="Scover.WPFZard.Wizard"
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"
x:Name="Window"
MinWidth="640"
MinHeight="480"
ResizeMode="NoResize"
SizeToContent="WidthAndHeight"
mc:Ignorable="d">
<Window.Resources>
<Style x:Key="ButtonStyle" TargetType="Button">
<Setter Property="MinHeight" Value="21" />
<Setter Property="MinWidth" Value="73" />
<Setter Property="Padding" Value="6,0,6,0" />
<Setter Property="Background">
<Setter.Value>
<SolidColorBrush Color="#E1E1E1" />
</Setter.Value>
</Setter>
<Setter Property="BorderBrush">
<Setter.Value>
<SolidColorBrush Color="#ADADAD" />
</Setter.Value>
</Setter>
<Setter Property="Margin" Value="6,0,0,0" />
</Style>
</Window.Resources>
<DockPanel Margin="12">
<StackPanel
x:Name="Buttons"
Margin="0,12,0,0"
HorizontalAlignment="Right"
DockPanel.Dock="Bottom"
Orientation="Horizontal" />
<!-- UsesParentJournal disables navigation UI and history since there is no compatible parent -->
<Frame
x:Name="Frame"
Margin="0,12,0,0"
DockPanel.Dock="Top"
JournalOwnership="UsesParentJournal" />
</DockPanel>
</Window>