19 lines
1.1 KiB
XML
19 lines
1.1 KiB
XML
<UserControl x:Class="Intromat.Views.DocumentView"
|
|
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:breadcrumbBar="clr-namespace:NodeNetwork.Toolkit.BreadcrumbBar;assembly=NodeNetworkToolkit"
|
|
xmlns:reactiveUi="http://reactiveui.net"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="450" d:DesignWidth="800">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition />
|
|
</Grid.RowDefinitions>
|
|
<breadcrumbBar:BreadcrumbBarView Grid.Row="0" x:Name="_breadcrumbBar" Margin="-2,-2,-1,-1" />
|
|
<reactiveUi:ViewModelViewHost Grid.Row="1" x:Name="_content" HorizontalAlignment="Stretch" HorizontalContentAlignment="Stretch" VerticalAlignment="Stretch" VerticalContentAlignment="Stretch" />
|
|
</Grid>
|
|
</UserControl>
|