34 lines
1.1 KiB
XML
34 lines
1.1 KiB
XML
<Window xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
x:Class="LindtLeerformPlugin.Views.RecipeNameDialog"
|
|
Title="New Recipe"
|
|
Width="400" Height="180"
|
|
CanResize="False"
|
|
WindowStartupLocation="CenterOwner">
|
|
|
|
<Grid RowDefinitions="Auto,Auto,Auto" Margin="16">
|
|
<TextBlock Grid.Row="0"
|
|
Text="Recipe name:"
|
|
FontSize="14"
|
|
Margin="0,0,0,8" />
|
|
|
|
<TextBox Grid.Row="1"
|
|
x:Name="TxtRecipeName"
|
|
Margin="0,0,0,16" />
|
|
|
|
<StackPanel Grid.Row="2"
|
|
Orientation="Horizontal"
|
|
HorizontalAlignment="Right"
|
|
Spacing="8">
|
|
<Button x:Name="BtnOk"
|
|
Content="OK"
|
|
Width="80" Height="36"
|
|
HorizontalContentAlignment="Center" />
|
|
<Button x:Name="BtnCancel"
|
|
Content="Cancel"
|
|
Width="80" Height="36"
|
|
HorizontalContentAlignment="Center" />
|
|
</StackPanel>
|
|
</Grid>
|
|
</Window>
|