JobDesignList.xaml 1.2 KB

1234567891011121314151617181920212223
  1. <UserControl x:Class="PRSDesktop.JobDesignList"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:PRSDesktop"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800">
  9. <Grid>
  10. <Grid.ColumnDefinitions>
  11. <ColumnDefinition Width="0.3*" />
  12. <ColumnDefinition Width="0.7*" />
  13. </Grid.ColumnDefinitions>
  14. <Grid.RowDefinitions>
  15. <RowDefinition Height="*" />
  16. <RowDefinition Height="*" />
  17. </Grid.RowDefinitions>
  18. <local:JobDesignGrid x:Name="Designs" Grid.Column="0" Grid.Row="0" Grid.ColumnSpan="2" Margin="0,0,0,5" />
  19. <local:JobDesignDocumentGrid x:Name="Documents" Grid.Column="0" Grid.Row="1" Margin="0,0,5,0" />
  20. <local:ManufacturingGrid x:Name="Packets" Grid.Column="1" Grid.Row="1" Margin="0"
  21. ColumnsTag="JobDesignManufacturing" />
  22. </Grid>
  23. </UserControl>