123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <Page x:Class="ModuleExam.UserData"
- 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="UserData">
- <Grid Background="White">
- <Grid.RowDefinitions>
- <RowDefinition Height="*"/>
- <RowDefinition Height="2*"/>
- <RowDefinition Height="10*"/>
- <RowDefinition Height="*"/>
- </Grid.RowDefinitions>
-
- <StackPanel Grid.Row="0" VerticalAlignment="Center" HorizontalAlignment="Center" Width="200">
- <ComboBox Name="SelectUser" SelectionChanged="ChangeUser"/>
- </StackPanel>
- <StackPanel Grid.Row="1" VerticalAlignment="Center" HorizontalAlignment="Center" Width="200">
- <TextBlock Name="FullName"/>
- <TextBlock Margin="0,10,0,0" Name="Post"/>
- </StackPanel>
- <ListView Grid.Row="2" Name="UserActivity">
- <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 VerticalAlignment="Center" HorizontalAlignment="Center" Grid.Row="3">
- <Button Click="GoBack" Content="Назад"/>
- </StackPanel>
- </Grid>
- </Page>
|