JobEmployeePanel.xaml 1.7 KB

123456789101112131415161718192021222324252627282930313233
  1. <UserControl x:Class="PRSDesktop.JobEmployeePanel"
  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="350" />
  12. <ColumnDefinition Width="*" />
  13. </Grid.ColumnDefinitions>
  14. <Grid.RowDefinitions>
  15. <RowDefinition Height="Auto" />
  16. <RowDefinition Height="*" />
  17. </Grid.RowDefinitions>
  18. <Border Grid.Row="0" Grid.Column="0" CornerRadius="5,5,0,0" BorderBrush="Gray" BorderThickness="0.75"
  19. Background="WhiteSmoke" Padding="2">
  20. <Label Content="Required Qualifications" HorizontalContentAlignment="Center"
  21. VerticalContentAlignment="Center" />
  22. </Border>
  23. <local:JobQualificationGrid x:Name="Qualifications" Grid.Row="1" Grid.Column="0" Margin="0,2,0,0" />
  24. <Border Grid.Row="0" Grid.Column="1" CornerRadius="5,5,0,0" BorderBrush="Gray" BorderThickness="0.75"
  25. Background="WhiteSmoke" Padding="2" Margin="2,0,0,0">
  26. <Label Content="Available Employees" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" />
  27. </Border>
  28. <local:JobEmployeeGrid x:Name="Employees" Grid.Row="1" Grid.Column="1" Margin="2,2,0,0" />
  29. </Grid>
  30. </UserControl>