42 lines
1.9 KiB
XML
42 lines
1.9 KiB
XML
<Window x:Class="OmagPhotoWD"
|
|
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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:OmagCUT="clr-namespace:OmagCUT"
|
|
xmlns:EgtWPFLib5="clr-namespace:EgtWPFLib5;assembly=EgtWPFLib5"
|
|
xmlns:EgtPHOTOLib="clr-namespace:EgtPHOTOLib;assembly=EgtPHOTOLib"
|
|
FontFamily="{DynamicResource OmagCut_Font}"
|
|
Title="OmagPHOTO" Height="700" Width="1250" WindowStyle="None" ResizeMode="NoResize" ShowInTaskbar="False" >
|
|
|
|
<Border Style="{DynamicResource OmagCut_Border}">
|
|
<Grid Name="OptionSLabGrid">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="4*"/>
|
|
<ColumnDefinition Width="10*"/>
|
|
<ColumnDefinition Width="1*"/>
|
|
<ColumnDefinition Width="0.25*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="0.25*"/>
|
|
<RowDefinition Height="10*"/>
|
|
<RowDefinition Height="0.25*"/>
|
|
<RowDefinition Height="1.5*"/>
|
|
<RowDefinition Height="0.25*"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<!-- nel codice mi occupo di riempire la griglia con gli UserControl -->
|
|
|
|
<Button Name="ExitBtn" Grid.Column="2" Grid.Row="3"
|
|
Style="{DynamicResource OmagCut_GradientBlueIconButton}" IsCancel="True">
|
|
<Image Source="{DynamicResource XImg}" Style="{DynamicResource OmagCut_ButtonIcon}"/>
|
|
</Button>
|
|
|
|
<DockPanel Grid.Column="1" Grid.Row="1" Visibility="Hidden">
|
|
<!--StatusBar-->
|
|
<EgtWPFLib5:StatusBarV DataContext="{StaticResource StatusBarVM}" DockPanel.Dock="Bottom"/>
|
|
</DockPanel>
|
|
</Grid>
|
|
</Border>
|
|
</Window>
|