SupportedBoxesWindow.xaml 914 B

123456789101112131415161718192021
  1. <Window x:Class="BmffViewer.SupportedBoxesWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:local="clr-namespace:BmffViewer"
  5. Title="Supported Boxes" Height="400" Width="350">
  6. <Grid>
  7. <Grid.RowDefinitions>
  8. <RowDefinition Height="*"/>
  9. <RowDefinition Height="Auto"/>
  10. </Grid.RowDefinitions>
  11. <ListView x:Name="BoxList">
  12. <ListView.View>
  13. <GridView>
  14. <GridViewColumn Width="50" Header="FourCC" DisplayMemberBinding="{Binding Path=Key}"/>
  15. <GridViewColumn Width="250" Header="Description" DisplayMemberBinding="{Binding Path=Value}"/>
  16. </GridView>
  17. </ListView.View>
  18. </ListView>
  19. <TextBlock Grid.Row="1" x:Name="CountBox"/>
  20. </Grid>
  21. </Window>