mirror of https://github.com/leiurayer/downkyi
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
841 B
18 lines
841 B
3 years ago
|
<UserControl x:Class="DatabaseManager.Views.ViewHeader"
|
||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
xmlns:prism="http://prismlibrary.com/"
|
||
|
prism:ViewModelLocator.AutoWireViewModel="True">
|
||
|
<Grid>
|
||
|
<DataGrid ItemsSource="{Binding HeaderList}" AutoGenerateColumns="False" >
|
||
|
<DataGrid.Columns>
|
||
|
<DataGridTextColumn Header="Avid" Binding="{Binding Mid}"/>
|
||
|
<DataGridTextColumn Header="Bvid" Binding="{Binding Name}"/>
|
||
|
<DataGridTextColumn Header="Url" Binding="{Binding Url}"/>
|
||
|
<DataGridTextColumn Header="Md5" Binding="{Binding Md5}"/>
|
||
|
</DataGrid.Columns>
|
||
|
|
||
|
</DataGrid>
|
||
|
</Grid>
|
||
|
</UserControl>
|