1234567891011 |
- <Window x:Class="Aitex.UI.RecipeEditor.UserNameInput"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- Title="{DynamicResource GlobalLableUserInforInput}" Height="110" Width="329" WindowStartupLocation="CenterOwner">
- <Grid>
- <TextBox Height="30" HorizontalAlignment="Left" Margin="13,37,0,0" Name="textBox1" VerticalAlignment="Top" Width="173" TextChanged="textBox1_TextChanged" />
- <Label Content="{DynamicResource GlobalLableInputName}" FontSize="15" Height="29" HorizontalAlignment="Left" Name="label1" VerticalAlignment="Top" Margin="8,5,0,0" />
- <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" />
- </Grid>
- </Window>
|