Files
2026-04-17 14:55:32 -04:00

18 lines
876 B
XML

<base:BaseView x:Class="DTS.Viewer.Navigation.NavigationView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:base="clr-namespace:DTS.Common.Base;assembly=DTS.Common"
xmlns:controls="clr-namespace:DTS.Common.Controls;assembly=DTS.Common">
<ContentControl x:Name="NavigationRegion" Background="LightGray">
<ContentControl.Template>
<ControlTemplate TargetType="ContentControl">
<Grid>
<controls:RoundedBox />
<Label>Navigation View</Label>
<ContentPresenter Content="{TemplateBinding Content}" />
</Grid>
</ControlTemplate>
</ContentControl.Template>
</ContentControl>
</base:BaseView>