RecipeNameInputDlg.xaml 1.2 KB

123456789101112131415161718
  1. <Window x:Class="Aitex.UI.RecipeEditor.View.RecipeNameInputDlg"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. Title="{DynamicResource GlobalLableTitleRecipeNameInput}"
  5. WindowStartupLocation="CenterOwner"
  6. WindowStyle="SingleBorderWindow" ResizeMode="NoResize" ShowInTaskbar="False"
  7. Background="LightSkyBlue" SizeToContent="WidthAndHeight">
  8. <StackPanel>
  9. <TextBlock Text="{DynamicResource GlobalLableInfoRecipeNameInput}" HorizontalAlignment="Left" FontSize="12" Margin="15" x:Name="labelCaption"/>
  10. <TextBox x:Name="textBoxInput" FontSize="12" TextChanged="textBoxInput_TextChanged" Width="300" Margin="5"/>
  11. <StackPanel Orientation="Horizontal" HorizontalAlignment="Right" Margin="10">
  12. <Button Content="{DynamicResource GlobalLableButtonOk}" x:Name="buttonOK" Margin="10,3,5,0" Width="75" FontSize="12" IsDefault="True" Click="buttonOK_Click" />
  13. <Button Content="{DynamicResource GlobalLableButtonCancel}" x:Name="buttonCancel" Margin="0,3,5,0" Width="75" FontSize="12" IsCancel="True" Click="buttonCancel_Click" />
  14. </StackPanel>
  15. </StackPanel>
  16. </Window>