KitPanel.xaml 1.5 KB

1234567891011121314151617181920212223242526272829303132
  1. <UserControl x:Class="PRSDesktop.KitPanel"
  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. <DockPanel Grid.Row="0" Grid.Column="0">
  15. <Border CornerRadius="5,5,0,0" BorderBrush="Gray" BorderThickness="0.75" Background="WhiteSmoke"
  16. DockPanel.Dock="Top">
  17. <Label Content="Available Kits" HorizontalContentAlignment="Center" />
  18. </Border>
  19. <local:KitGrid x:Name="Kits" Margin="0,2,0,0" DockPanel.Dock="Top" />
  20. </DockPanel>
  21. <DockPanel Grid.Column="1" Grid.Row="0" Margin="2,0,0,0">
  22. <Border CornerRadius="5,5,0,0" BorderBrush="Gray" BorderThickness="0.75" Background="WhiteSmoke"
  23. DockPanel.Dock="Top">
  24. <Label Content="Kit Components" HorizontalContentAlignment="Center" DockPanel.Dock="Top" />
  25. </Border>
  26. <local:KitProductGrid x:Name="Products" Margin="0,2,0,0" DockPanel.Dock="Top" />
  27. </DockPanel>
  28. </Grid>
  29. </UserControl>