ee575750da
- primo salvataggio.
25 lines
1.0 KiB
XML
25 lines
1.0 KiB
XML
<EgtWPFLib5:EgtCustomWindow x:Class="MainWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:EgtWPFLib5="clr-namespace:EgtWPFLib5;assembly=EgtWPFLib5"
|
|
Title="{Binding Title}" Icon="/Resources/EgtCAM5.ico"
|
|
TitleBarBrush="{StaticResource EgaltechBlue1}"
|
|
BorderBrush="{StaticResource EgaltechBlue1}" BorderThickness="2"
|
|
MinHeight="600" MinWidth="800" Height="768" Width="1366"
|
|
AboutBox="{Binding AboutBox}" WindowStyle="None" ResizeMode="NoResize" TitleBarHeight="32">
|
|
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="1*"/>
|
|
<ColumnDefinition Width="5*"/>
|
|
<ColumnDefinition Width="5*"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<!--ContentPresenter that contains the DoorParameters-->
|
|
<ContentPresenter Grid.Column="0" Content="{Binding CompoPanel}"/>
|
|
<ContentPresenter Grid.Column="1" Content="{Binding DoorParameters}"/>
|
|
|
|
</Grid>
|
|
|
|
</EgtWPFLib5:EgtCustomWindow>
|