UserNameInput.xaml 975 B

1234567891011
  1. <Window x:Class="Aitex.UI.RecipeEditor.UserNameInput"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. Title="{DynamicResource GlobalLableUserInforInput}" Height="110" Width="329" WindowStartupLocation="CenterOwner">
  5. <Grid>
  6. <TextBox Height="30" HorizontalAlignment="Left" Margin="13,37,0,0" Name="textBox1" VerticalAlignment="Top" Width="173" TextChanged="textBox1_TextChanged" />
  7. <Label Content="{DynamicResource GlobalLableInputName}" FontSize="15" Height="29" HorizontalAlignment="Left" Name="label1" VerticalAlignment="Top" Margin="8,5,0,0" />
  8. <Button Content="{DynamicResource GlobalLableButtonOk}" ToolTip="{DynamicResource GlobalLableSavedInRecipe}" Height="23" HorizontalAlignment="Left" Margin="222,37,0,0" Name="button1" VerticalAlignment="Top" Width="75" IsEnabled="False" Click="button1_Click" IsDefault="True" />
  9. </Grid>
  10. </Window>