12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <Page x:Class="ModuleExam.ActivityPage"
- 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:ModuleExam"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800"
- Title="ActivityPage">
- <Grid Background="White">
- <Grid.RowDefinitions>
- <RowDefinition Height="*"/>
- <RowDefinition Height="*"/>
- <RowDefinition Height="2*"/>
- <RowDefinition Height="0.7*"/>
- </Grid.RowDefinitions>
- <StackPanel HorizontalAlignment="Center">
- <TextBlock Text="Главная страница" FontSize="20"/>
- <StackPanel Name="AdminButtons" Visibility="Collapsed">
- <Button Margin="0,10,0,0" Content="Просмотр рейтинга пользователей" Click="ToRatePage"/>
- <Button Margin="0,10,0,0" Content="Просмотр данных пользователей" Click="ToUserDataPage"/>
- </StackPanel>
- <Button Margin="0,10,0,0" Content="Выход" Click="Exit"/>
- </StackPanel>
- <StackPanel Grid.Row="1">
- <TextBlock FontSize="15" Text="ФИО:" FontWeight="Bold"/>
- <TextBlock FontSize="14" Name="SurNamPat"/>
- <TextBlock FontSize="15" Text="Должность:" FontWeight="Bold"/>
- <TextBlock FontSize="14" Name="UserPost"/>
- </StackPanel>
- <ListView Grid.Row="2" Name="UsersCoef">
- <ListView.ItemsPanel>
- <ItemsPanelTemplate>
- <StackPanel Orientation="Vertical"/>
- </ItemsPanelTemplate>
- </ListView.ItemsPanel>
- <ListView.ItemTemplate>
- <DataTemplate>
- <Border>
- <StackPanel Orientation="Horizontal">
- <TextBlock Text="{Binding metrics.metric}"/>
- <TextBlock Margin="10,0,0,0" Text="{Binding coefficient}"/>
- </StackPanel>
- </Border>
- </DataTemplate>
- </ListView.ItemTemplate>
- </ListView>
- <StackPanel Grid.Row="3">
- <TextBlock Text="Итоговый балл:"/>
- <TextBlock Name="FinalRate"/>
- <TextBlock Text="Позиция в рейтинге:"/>
- <TextBlock Name="Place"/>
- </StackPanel>
- </Grid>
- </Page>
|