init
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
<base:BaseWindow x:Class="DTS.Viewer.Loader.ShellView"
|
||||
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"
|
||||
Background="Silver"
|
||||
VerticalAlignment="Stretch" HorizontalAlignment="Stretch"
|
||||
VerticalContentAlignment="Stretch" HorizontalContentAlignment="Stretch"
|
||||
Height="Auto" Width="Auto" SizeToContent="WidthAndHeight" >
|
||||
|
||||
<Grid x:Name="MainShell" VerticalAlignment="Stretch" HorizontalAlignment="Stretch">
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="*"/>
|
||||
</Grid.RowDefinitions>
|
||||
<ContentControl Grid.Row="0" x:Name="MainRegion" Content="{Binding ContextMainRegion}" VerticalAlignment="Stretch" HorizontalAlignment="Stretch" >
|
||||
<ContentControl.Template>
|
||||
<ControlTemplate TargetType="ContentControl">
|
||||
<ContentPresenter Content="{TemplateBinding Content}" />
|
||||
</ControlTemplate>
|
||||
</ContentControl.Template>
|
||||
</ContentControl>
|
||||
</Grid>
|
||||
</base:BaseWindow>
|
||||
|
||||
Reference in New Issue
Block a user