123456789101112131415161718192021 |
- <Window x:Class="BmffViewer.SupportedBoxesWindow"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:local="clr-namespace:BmffViewer"
- Title="Supported Boxes" Height="400" Width="350">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="*"/>
- <RowDefinition Height="Auto"/>
- </Grid.RowDefinitions>
- <ListView x:Name="BoxList">
- <ListView.View>
- <GridView>
- <GridViewColumn Width="50" Header="FourCC" DisplayMemberBinding="{Binding Path=Key}"/>
- <GridViewColumn Width="250" Header="Description" DisplayMemberBinding="{Binding Path=Value}"/>
- </GridView>
- </ListView.View>
- </ListView>
- <TextBlock Grid.Row="1" x:Name="CountBox"/>
- </Grid>
- </Window>
|