RecipeNameDialog.xaml 1.3 KB

1234567891011121314151617181920
  1. <Window x:Class="Aitex.Sorter.UI.Views.RecipeNameDialog"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:Aitex.Sorter.UI.Views"
  7. mc:Ignorable="d"
  8. WindowStyle="SingleBorderWindow" ResizeMode="NoResize" ShowInTaskbar="False"
  9. Title="Recipe Name" Height="200" Width="360" WindowStartupLocation="CenterOwner">
  10. <StackPanel>
  11. <TextBlock Text="Recipe Name" HorizontalAlignment="Left" FontSize="12" Margin="15"/>
  12. <TextBox x:Name="tbInput" VerticalContentAlignment="Center" TextChanged="tbInput_TextChanged" Width="300" Margin="5"/>
  13. <StackPanel Orientation="Horizontal" HorizontalAlignment="Right" Margin="10">
  14. <Button Content="{DynamicResource GlobalLableButtonOk}" x:Name="btnOk" Margin="10,3,5,0" Width="75" FontSize="12" IsDefault="True" Click="btnOk_Click" />
  15. <Button Content="{DynamicResource GlobalLableButtonCancel}" x:Name="btnCancel" Margin="0,3,5,0" Width="75" FontSize="12" IsCancel="True" Click="btnCancel_Click" />
  16. </StackPanel>
  17. </StackPanel>
  18. </Window>