123456789101112131415161718192021222324252627282930313233343536 |
- <Page x:Class="Prakticheskaya5_Venediktov.AdminFun"
- 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:Prakticheskaya5_Venediktov"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800"
- Title="AdminFun">
- <Grid Background="LightBlue">
- <Grid.RowDefinitions>
- <RowDefinition Height="55*"/>
- <RowDefinition Height="400*"/>
- </Grid.RowDefinitions>
- <WrapPanel Orientation="Horizontal" Grid.Row="0" HorizontalAlignment="Center">
- <Button x:Name="sortbig" Click="sortbig_Click" Content="Сортировка по возрастанию фамилии"/>
- <Button x:Name="sortsmall" Click="sortsmall_Click" Content="Сортировка по убыванию фамилии"/>
- <ComboBox x:Name="gender" SelectionChanged="gender_Selected" Text="Выберите пол"/>
- <TextBox x:Name="poisk" TextChanged="poisk_TextChanged" Width="300"></TextBox>
- <Button x:Name="clear" Click="clear_Click" Content="Сбросить все фильтры"/>
- <Button x:Name="glav" Click="glav_Click" Content="Выйти" HorizontalAlignment="Right"/>
- </WrapPanel>
- <ScrollViewer VerticalScrollBarVisibility="Auto" Grid.Row="1" HorizontalAlignment="Center">
- <DataGrid Name="All" AutoGenerateColumns="False" CanUserAddRows="False">
- <DataGrid.Columns>
- <DataGridTextColumn Header="Фамилия" Binding="{Binding Path=Surname}"/>
- <DataGridTextColumn Header="Имя" Binding="{Binding Path=Name}"/>
- <DataGridTextColumn Header="Логин" Binding="{Binding Path=Login}"/>
- <DataGridTextColumn Header="Пол" Binding="{Binding Path=Pol}"/>
- <DataGridTextColumn Header="Дата рождения" Binding="{Binding Path=Birthday}"/>
- </DataGrid.Columns>
- </DataGrid>
- </ScrollViewer>
- </Grid>
- </Page>
|