wabbajack/Wabbajack/Views/ManifestView.xaml
2020-02-02 13:52:53 +01:00

38 lines
1.6 KiB
XML

<reactiveUi:ReactiveUserControl x:TypeArguments="viewModels:ManifestVM" x:Class="Wabbajack.ManifestView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:Wabbajack"
xmlns:reactiveUi="http://reactiveui.net"
xmlns:viewModels="clr-namespace:Wabbajack.View_Models"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800">
<ScrollViewer>
<Grid Margin="8">
<TextBlock x:Name="Name" FontSize="20"/>
</Grid>
<!--<ItemsControl Margin="8" x:Name="ManifestItemsControl">
<ItemsControl.Resources>
<DataTemplate x:Key="HeaderTemplate">
<Grid>
<TextBlock Text="{Binding Path=Text}" FontSize="20"/>
</Grid>
</DataTemplate>
</ItemsControl.Resources>
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<ScrollViewer />
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
<ItemsControl.ItemTemplateSelector>
<DataTemplateSelector x:Name="DataTemplateSelector"/>
</ItemsControl.ItemTemplateSelector>
</ItemsControl>-->
</ScrollViewer>
</reactiveUi:ReactiveUserControl>