123456789101112131415161718192021 |
- <Window x:Class="Aitex.Core.UI.Dialog.RecipeSelectDialog"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- Title="Select Recipe" Height="431" Width="328" FontSize="12" FontFamily="Arial,SimSun"
- WindowStartupLocation="CenterOwner" ResizeMode="NoResize" Topmost="True" ShowInTaskbar="False"
- >
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="145" />
- <RowDefinition Height="20*" />
- </Grid.RowDefinitions>
- <Grid Margin="0,0,0,33" Grid.RowSpan="2">
- <TreeView Name="treeView1" Margin="0,-1,0,6" MouseDoubleClick="TreeView1_MouseDoubleClick" />
- </Grid>
- <Grid Grid.Row="1" Margin="0,222,0,0">
- <Button Content="Select" Margin="0,0,87,3" Name="btnOK" Click="btnOK_Click" Height="23" VerticalAlignment="Bottom" HorizontalAlignment="Right" Width="75" />
- <Button Content="Close" Margin="0,0,7,3" Name="btnCancel" Click="btnCancel_Click" HorizontalAlignment="Right" Width="75" Height="23" VerticalAlignment="Bottom" />
- </Grid>
- </Grid>
- </Window>
|