-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AddProfileDialog.xaml
29 lines (25 loc) · 1.22 KB
/
AddProfileDialog.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
<Window x:Class="Elite_Dangerous_Addon_Launcher_V2.AddProfileDialog"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
Title="Add Profile" Height="150" Width="300"
TextElement.Foreground="{DynamicResource MaterialDesignBody}"
TextElement.FontWeight="Regular"
TextElement.FontSize="13"
TextOptions.TextFormattingMode="Ideal"
TextOptions.TextRenderingMode="Auto"
Background="{DynamicResource MaterialDesignPaper}"
FontFamily="{DynamicResource MaterialDesignFont}">
<materialDesign:DialogHost>
<materialDesign:Card>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<TextBox x:Name="TbProfileName" Grid.Row="0" Margin="10" />
<Button x:Name="BtnOk" Grid.Row="1" Margin="10" Content="OK" Click="BtnOk_Click" Style="{DynamicResource MaterialDesignRaisedButton}" />
</Grid>
</materialDesign:Card>
</materialDesign:DialogHost>
</Window>