|
@@ -22,16 +22,26 @@
|
|
|
</Grid.RowDefinitions>
|
|
|
<StackPanel Grid.Column="1" Grid.Row="1">
|
|
|
<TextBlock Text="{Binding Titlee}" FontWeight="Bold" FontSize="34" HorizontalAlignment="Center"/>
|
|
|
- <ListView Name="lisaPrint">
|
|
|
+ <ListView Name="lisaPrint" HorizontalContentAlignment="Stretch">
|
|
|
<ListView.ItemTemplate>
|
|
|
<DataTemplate>
|
|
|
- <WrapPanel Orientation="Horizontal">
|
|
|
- <TextBlock Text="{Binding IndexNumber}" FontSize="25"/>
|
|
|
- <TextBlock Text=" " FontSize="20"/>
|
|
|
- <TextBlock Text="{Binding Numbers.Title}" TextWrapping="Wrap" MaxWidth="600" FontSize="25"/>
|
|
|
- <TextBlock Text=", " FontSize="20" VerticalAlignment="Bottom"/>
|
|
|
- <TextBlock Text="{Binding Numbers.Users.FIO}" MaxWidth="280" FontSize="25" VerticalAlignment="Bottom"/>
|
|
|
- </WrapPanel>
|
|
|
+ <Grid>
|
|
|
+ <Grid.RowDefinitions>
|
|
|
+ <RowDefinition Height="*"/>
|
|
|
+ <RowDefinition Height="*"/>
|
|
|
+ </Grid.RowDefinitions>
|
|
|
+ <StackPanel Orientation="Horizontal">
|
|
|
+ <TextBlock Text="{Binding IndexNumber}" FontSize="25"/>
|
|
|
+ <TextBlock Text=" " FontSize="20"/>
|
|
|
+ <TextBlock Text="{Binding Numbers.Title}" TextWrapping="Wrap" MaxWidth="600" FontSize="25"/>
|
|
|
+ <TextBlock Text=", " FontSize="20" VerticalAlignment="Bottom"/>
|
|
|
+ <TextBlock Text="{Binding Numbers.Users.FIO}" MaxWidth="280" FontSize="25" VerticalAlignment="Bottom"/>
|
|
|
+ </StackPanel>
|
|
|
+ <TextBlock Grid.Row="1" HorizontalAlignment="Right" FontSize="20">
|
|
|
+ <Run Text="{Binding Numbers.TimeNumber}"/>
|
|
|
+ <Run Text=" (минуты)"/>
|
|
|
+ </TextBlock>
|
|
|
+ </Grid>
|
|
|
</DataTemplate>
|
|
|
</ListView.ItemTemplate>
|
|
|
</ListView>
|