33 lines
1.6 KiB
Plaintext
33 lines
1.6 KiB
Plaintext
|
|
<base:BaseView x:Class="DTS.Viewer.TabView"
|
||
|
|
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: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"
|
||
|
|
xmlns:xctk="http://schemas.xceed.com/wpf/xaml/toolkit"
|
||
|
|
xmlns:xcad="http://schemas.xceed.com/wpf/xaml/avalondock"
|
||
|
|
xmlns:prism="clr-namespace:Microsoft.Practices.Prism.Regions;assembly=Microsoft.Practices.Prism">
|
||
|
|
<base:BaseView.Resources>
|
||
|
|
<ResourceDictionary>
|
||
|
|
<ResourceDictionary.MergedDictionaries>
|
||
|
|
<ResourceDictionary Source="../Themes/Default.xaml"/>
|
||
|
|
</ResourceDictionary.MergedDictionaries>
|
||
|
|
</ResourceDictionary>
|
||
|
|
</base:BaseView.Resources>
|
||
|
|
|
||
|
|
<xcad:DockingManager></xcad:DockingManager>
|
||
|
|
|
||
|
|
|
||
|
|
<!--<ContentControl x:Name="TabRegion" Background="LightGray">
|
||
|
|
<ContentControl.Template>
|
||
|
|
<ControlTemplate TargetType="ContentControl">
|
||
|
|
<Grid>
|
||
|
|
<ContentPresenter Content="{TemplateBinding Content}" />
|
||
|
|
</Grid>
|
||
|
|
</ControlTemplate>
|
||
|
|
</ContentControl.Template>
|
||
|
|
</ContentControl>-->
|
||
|
|
</base:BaseView>
|