|
|
@ -33,7 +33,7 @@ |
|
|
|
<TextBlock Grid.Column="1" Grid.Row="0" HorizontalAlignment="Center" VerticalAlignment="Center" |
|
|
|
<TextBlock Grid.Column="1" Grid.Row="0" HorizontalAlignment="Center" VerticalAlignment="Center" |
|
|
|
Text="Name: "/> |
|
|
|
Text="Name: "/> |
|
|
|
<TextBlock Grid.Column="2" Grid.Row="0" HorizontalAlignment="Center" VerticalAlignment="Center" |
|
|
|
<TextBlock Grid.Column="2" Grid.Row="0" HorizontalAlignment="Center" VerticalAlignment="Center" |
|
|
|
FontSize="18" FontWeight="Bold" |
|
|
|
FontWeight="Bold" |
|
|
|
Text="{Binding Name}"/> |
|
|
|
Text="{Binding Name}"/> |
|
|
|
<Button x:Name="btnDelete" Grid.Column="3" Grid.Row="1" Margin="3" |
|
|
|
<Button x:Name="btnDelete" Grid.Column="3" Grid.Row="1" Margin="3" |
|
|
|
Content="Delete" |
|
|
|
Content="Delete" |
|
|
@ -54,8 +54,31 @@ |
|
|
|
</Window.Resources> |
|
|
|
</Window.Resources> |
|
|
|
|
|
|
|
|
|
|
|
<Grid> |
|
|
|
<Grid> |
|
|
|
<ListBox x:Name="lbStudentList" IsSynchronizedWithCurrentItem="True" HorizontalContentAlignment="Stretch" |
|
|
|
<Grid.RowDefinitions> |
|
|
|
|
|
|
|
<RowDefinition Height="*"/> |
|
|
|
|
|
|
|
<RowDefinition Height="Auto"/> |
|
|
|
|
|
|
|
</Grid.RowDefinitions> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<ListBox x:Name="lbStudentList" Grid.Row="0" IsSynchronizedWithCurrentItem="True" HorizontalContentAlignment="Stretch" |
|
|
|
ItemTemplate="{StaticResource studentTemplate}" |
|
|
|
ItemTemplate="{StaticResource studentTemplate}" |
|
|
|
ItemsSource="{Binding}"/> |
|
|
|
ItemsSource="{Binding}"> |
|
|
|
|
|
|
|
<ListBox.GroupStyle> |
|
|
|
|
|
|
|
<GroupStyle> |
|
|
|
|
|
|
|
<GroupStyle.HeaderTemplate> |
|
|
|
|
|
|
|
<DataTemplate> |
|
|
|
|
|
|
|
<TextBlock Background="Black" Foreground="White" FontSize="18" FontWeight="Bold" HorizontalAlignment="Center"> |
|
|
|
|
|
|
|
<TextBlock Text="{Binding Name}"/> (<TextBlock Text="{Binding ItemCount}"/>Person) |
|
|
|
|
|
|
|
</TextBlock> |
|
|
|
|
|
|
|
</DataTemplate> |
|
|
|
|
|
|
|
</GroupStyle.HeaderTemplate> |
|
|
|
|
|
|
|
</GroupStyle> |
|
|
|
|
|
|
|
</ListBox.GroupStyle> |
|
|
|
|
|
|
|
</ListBox> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<StackPanel Grid.Row="1"> |
|
|
|
|
|
|
|
<Button x:Name="btnGroup" |
|
|
|
|
|
|
|
Content="Gourpage" |
|
|
|
|
|
|
|
Click="btnGroup_Click"/> |
|
|
|
|
|
|
|
</StackPanel> |
|
|
|
</Grid> |
|
|
|
</Grid> |
|
|
|
</Window> |
|
|
|
</Window> |
|
|
|