You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
1.0 KiB

<Window
x:Class="MODELING_DEF_DES_MI_VI.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="MODELING_DEF_DES_MI_VI"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:modelcreation="clr-namespace:MODELING_DEF_DES_MI_VI.Modules.ModelCreationUnit"
xmlns:poreinspection="clr-namespace:MODELING_DEF_DES_MI_VI.Modules.PoreInspectionUnit"
Title="MODELING-DEF-DES-MI-VI"
Width="1000"
Height="600"
d:DataContext="{d:DesignInstance local:MainWindowViewModel}"
mc:Ignorable="d">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="1*" />
<ColumnDefinition Width="1*" />
</Grid.ColumnDefinitions>
<ContentControl Grid.Column="0" Content="{Binding PoreInspectionUnit}" />
<ContentControl Grid.Column="1" Content="{Binding ModelCreationUnit}" />
</Grid>
</Window>