MainWindow.xaml 1.5 KB

12345678910111213141516171819202122232425262728293031
  1. <Window x:Class="WpfApp2.MainWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:WpfApp2"
  7. mc:Ignorable="d"
  8. Title="Musical Store" Height="450" Width="800">
  9. <Grid>
  10. <Grid.RowDefinitions>
  11. <RowDefinition Height="Auto" />
  12. <RowDefinition Height="*" />
  13. </Grid.RowDefinitions>
  14. <StackPanel Orientation="Horizontal" Margin="10">
  15. <Label Content="Фильтр:" VerticalAlignment="Center" />
  16. <ComboBox x:Name="FilterComboBox" SelectionChanged="FilterComboBox_SelectionChanged" Margin="10" />
  17. </StackPanel>
  18. <ListView x:Name="InstrumentListView" Grid.Row="1" Margin="10">
  19. <ListView.View>
  20. <GridView>
  21. <GridViewColumn Header="Название" DisplayMemberBinding="{Binding Name}" />
  22. <GridViewColumn Header="Тип" DisplayMemberBinding="{Binding Type}" />
  23. <GridViewColumn Header="Бренд" DisplayMemberBinding="{Binding Brand}" />
  24. <GridViewColumn Header="Цена" DisplayMemberBinding="{Binding Price}" />
  25. </GridView>
  26. </ListView.View>
  27. </ListView>
  28. </Grid>
  29. </Window>