123456789101112131415161718192021222324252627282930313233 |
- <UserControl x:Class="PRSDesktop.JobEmployeePanel"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:PRSDesktop"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800">
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="350" />
- <ColumnDefinition Width="*" />
- </Grid.ColumnDefinitions>
- <Grid.RowDefinitions>
- <RowDefinition Height="Auto" />
- <RowDefinition Height="*" />
- </Grid.RowDefinitions>
- <Border Grid.Row="0" Grid.Column="0" CornerRadius="5,5,0,0" BorderBrush="Gray" BorderThickness="0.75"
- Background="WhiteSmoke" Padding="2">
- <Label Content="Required Qualifications" HorizontalContentAlignment="Center"
- VerticalContentAlignment="Center" />
- </Border>
- <local:JobQualificationGrid x:Name="Qualifications" Grid.Row="1" Grid.Column="0" Margin="0,2,0,0" />
- <Border Grid.Row="0" Grid.Column="1" CornerRadius="5,5,0,0" BorderBrush="Gray" BorderThickness="0.75"
- Background="WhiteSmoke" Padding="2" Margin="2,0,0,0">
- <Label Content="Available Employees" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" />
- </Border>
- <local:JobEmployeeGrid x:Name="Employees" Grid.Row="1" Grid.Column="1" Margin="2,2,0,0" />
- </Grid>
- </UserControl>
|