39 lines
1.8 KiB
Plaintext
39 lines
1.8 KiB
Plaintext
|
|
<base:BaseView x:Class="DTS.Viewer.NavigationView"
|
||
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
|
xmlns:prism="clr-namespace:Microsoft.Practices.Prism.Regions;assembly=Microsoft.Practices.Prism"
|
||
|
|
xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"
|
||
|
|
xmlns:classes="clr-namespace:DTS.Common.Classes;assembly=DTS.Common"
|
||
|
|
xmlns:controls="clr-namespace:DTS.Common.Controls;assembly=DTS.Common"
|
||
|
|
xmlns:base="clr-namespace:DTS.Common.Base;assembly=DTS.Common"
|
||
|
|
HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
|
||
|
|
<i:Interaction.Triggers>
|
||
|
|
|
||
|
|
<!-- Display Notification Window -->
|
||
|
|
<!--<interactionRequest:InteractionRequestTrigger SourceObject="{Binding NotificationRequest, Mode=OneWay}">
|
||
|
|
<inf:PopupWindowAction IsModal="True" StartupPosition="CenterScreen"/>
|
||
|
|
</interactionRequest:InteractionRequestTrigger>-->
|
||
|
|
|
||
|
|
</i:Interaction.Triggers>
|
||
|
|
|
||
|
|
<base:BaseView.Resources>
|
||
|
|
<ResourceDictionary>
|
||
|
|
<ResourceDictionary.MergedDictionaries>
|
||
|
|
<ResourceDictionary Source="../Themes/Default.xaml"/>
|
||
|
|
</ResourceDictionary.MergedDictionaries>
|
||
|
|
</ResourceDictionary>
|
||
|
|
</base:BaseView.Resources>
|
||
|
|
|
||
|
|
<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>
|