blob: c544a8d222ea1edb36bd2bc7bc52691ee2c12de7 (
plain)
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
|
<UserControl x:Class="MaterialDesignColors.WpfExample.Domain.Sample4Dialog"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:wpf="clr-namespace:MaterialDesignThemes.Wpf;assembly=MaterialDesignThemes.Wpf"
mc:Ignorable="d" >
<Grid Margin="16">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<TextBox wpf:HintAssist.Hint="Name" Style="{DynamicResource MaterialDesignFloatingHintTextBox}"
Margin="0 6 0 0"
FontSize="18" Grid.Row="0"
/>
<StackPanel Orientation="Horizontal" Grid.Row="1"
Margin="0 16 0 0">
<Button IsDefault="True" Style="{DynamicResource MaterialDesignFlatButton}"
Command="{Binding AcceptSample4DialogCommand}">
ACCEPT
</Button>
<Button IsCancel="True" Margin="8 0 0 0" Style="{DynamicResource MaterialDesignFlatButton}"
Command="{Binding CancelSample4DialogCommand}">
CANCEL
</Button>
</StackPanel>
</Grid>
</UserControl>
|