123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- <Window x:Class="WpfApp1.MainWindow"
- 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:WpfApp1"
- mc:Ignorable="d"
- Title="MainWindow" Height="450" Width="800">
- <Grid ShowGridLines="True">
- <Grid.RowDefinitions>
- <RowDefinition Height="auto"/>
- <RowDefinition />
- <RowDefinition Height="auto"/>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="200"/>
- <ColumnDefinition/>
- </Grid.ColumnDefinitions>
- <Image
- Source ="1.jpeg"
- Grid.RowSpan="2" HorizontalAlignment="Right"/>
- <DataGrid
- Grid.Row="1"
- Grid.Column="1"
- CanUserAddRows="False"
- AutoGenerateColumns="False"
- ItemsSource="{Binding WorkerList}">
- <DataGrid.Columns>
- <DataGridTextColumn
- Header="Имя"
- Binding="{Binding name}"/>
- <DataGridTextColumn
- Header="Возраст"
- Binding="{Binding Age}"/>
- <DataGridTextColumn
- Header="Должность"
- Binding="{Binding Pos}"/>
- <DataGridTextColumn
- Header="Пол"
- Binding="{Binding Sex}"/>
- <DataGridTextColumn
- Header="Дата рождения"
- Binding="{Binding date,StringFormat='dd.MM.yyyy'}"/>
- <DataGridTextColumn
- Header="Трудоустроен"
- Binding="{Binding available}"/>
- </DataGrid.Columns>
- </DataGrid>
- <StackPanel
- Orientation="Vertical"
- Grid.RowSpan="3"
- VerticalAlignment="Bottom">
- <Button
- x:Name="ExitButton"
- Content="Выход"
- Click="ExitButton_Click"
- Height="50"/>
- </StackPanel>
- <WrapPanel
- Orientation="Horizontal"
- Grid.Column="1"
- MinHeight="50">
- <Label
- Content="Должность:"
- VerticalAlignment="Center"/>
- <ComboBox
- Name="PosFilterComboBox"
- SelectionChanged="PosFilterComboBox_SelectionChanged_1"
- VerticalAlignment="Center"
- MinWidth="100"
- SelectedIndex="0"
- ItemsSource="{Binding WorkerPosList}">
- <ComboBox.ItemTemplate>
- <DataTemplate>
- <Label
- Content="{Binding title}"/>
- </DataTemplate>
- </ComboBox.ItemTemplate>
- </ComboBox>
- <Label
- Content="Возраст:"
- VerticalAlignment="Center"/>
- <ComboBox
- Name="AgeFilterComboBox"
- SelectionChanged="AgeFilterComboBox_SelectionChanged_2"
- VerticalAlignment="Center"
- MinWidth="100"
- SelectedIndex="0"
- ItemsSource="{Binding WorkerAgeList}">
- <ComboBox.ItemTemplate>
- <DataTemplate>
- <Label
- Content="{Binding title}"/>
- </DataTemplate>
- </ComboBox.ItemTemplate>
- </ComboBox>
- <Label
- Content="Пол"
- VerticalAlignment="Center"/>
- <ComboBox
- Name="SexFilterComboBox"
- SelectionChanged="SexFilterComboBox_SelectionChanged_3"
- VerticalAlignment="Center"
- MinWidth="100"
- SelectedIndex="0"
- ItemsSource="{Binding WorkerSexList}">
- <ComboBox.ItemTemplate>
- <DataTemplate>
- <Label
- Content="{Binding title}"/>
- </DataTemplate>
- </ComboBox.ItemTemplate>
- </ComboBox>
- <RadioButton
- GroupName="Price"
- Tag="2"
- Content="Старше"
- Checked="RadioButton_Checked"
- VerticalAlignment="Center" RenderTransformOrigin="0.067,0.44"/>
- <RadioButton
- GroupName="Price"
- Tag="1"
- Content="Младше"
- IsChecked="True"
- Checked="RadioButton_Checked"
- VerticalAlignment="Center" Height="15" Width="69"/>
- <Label
- Content="Искать"
- VerticalAlignment="Center"/>
- <TextBox
- Width="200"
- VerticalAlignment="Center"
- x:Name="SearchFilterTextBox"
- KeyUp="SearchFilter_KeyUp"/>
- </WrapPanel>
- </Grid>
- </Window>
|