| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <wpf:ThemableWindow x:Class="PRSDesktop.SetoutTemplate"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:local="clr-namespace:PRSDesktop"
- xmlns:wpf="clr-namespace:InABox.Wpf;assembly=InABox.Wpf"
- mc:Ignorable="d"
- Title="Manufacturing Templates" Height="800" Width="1000" WindowStartupLocation="CenterScreen">
- <Grid Margin="5">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="*" />
- <ColumnDefinition Width="400" />
- </Grid.ColumnDefinitions>
- <Grid.RowDefinitions>
- <RowDefinition Height="30" />
- <RowDefinition Height="*" />
- <RowDefinition Height="30" />
- <RowDefinition Height="*" />
- <RowDefinition Height="40" />
- </Grid.RowDefinitions>
- <Label Content="Available Templates" Grid.Row="0" Grid.Column="0" />
- <local:SetoutTemplateList Grid.Column="0" Grid.Row="1" Grid.RowSpan="3" x:Name="Templates" Margin="5,0,0,0"
- TemplateSelected="Templates_TemplateSelected" />
- <Label Content="Manufacturing Stages" Grid.Row="0" Grid.Column="1" />
- <local:SetoutStagesPanel Grid.Column="1" Grid.Row="1" x:Name="Stages" />
- <Label Content="Item Attributes" Grid.Row="2" Grid.Column="1" />
- <!--<local:FactoryTemplateAttributesGrid x:Name="Attributes" Grid.Column="1" Grid.Row="3" Margin="5,5,0,0"/>-->
- <Button x:Name="ExportButton" Grid.Column="0" Grid.Row="4" Content="Export" HorizontalAlignment="Left"
- Width="75" Margin="0,5,0,0" Click="ExportButton_Click" />
- <StackPanel Grid.Column="1" Grid.Row="4" HorizontalAlignment="Right" Orientation="Horizontal">
- <Button x:Name="OKButton" Content="OK" HorizontalAlignment="Right" Width="75" Margin="0,5,0,0"
- Click="OKButton_Click" />
- <Button x:Name="CancelButton" Content="Cancel" HorizontalAlignment="Right" Width="75" Margin="5,5,0,0"
- Click="CancelButton_Click" />
- </StackPanel>
- </Grid>
- </wpf:ThemableWindow>
|