123456789101112131415161718192021222324 |
- <Page x:Class="Exam.Pages.RatePage"
- 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:Exam.Pages"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800" Background="White"
- Title="RatePage">
- <Grid>
- <ListView x:Name="LVUsers" Width="500">
- <ListView.ItemTemplate>
- <DataTemplate>
- <StackPanel>
- <TextBlock Margin="10" Text="{Binding position}"/>
- <TextBlock Text="{Binding name, StringFormat=ФИО: {0}}" Margin="10"/>
- <TextBlock Text="{Binding rate, StringFormat=Рейтинг: {0}}" Margin="10"/>
- </StackPanel>
- </DataTemplate>
- </ListView.ItemTemplate>
- </ListView>
- </Grid>
- </Page>
|