a889e98029
- Miglioramenti vari.
65 lines
2.7 KiB
XML
65 lines
2.7 KiB
XML
<UserControl x:Class="PhotoPageUC"
|
|
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"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="853.3" d:DesignWidth="1280" Loaded="PhotoPage_Loaded" Initialized="PhotoPage_Initialized" Unloaded="PhotoPage_Unloaded">
|
|
|
|
<!-- Chiamata al Dictionary -->
|
|
<UserControl.Resources>
|
|
<ResourceDictionary Source="OmagCutDictionary.xaml"/>
|
|
</UserControl.Resources>
|
|
|
|
<!-- Definizione della ImportPage -->
|
|
<Border Style="{StaticResource OmagCut_PageBorder}" >
|
|
<Grid Name="PhotoPageGrid" >
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="3*"/>
|
|
<ColumnDefinition Width="12*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="0.5*"/>
|
|
<RowDefinition Height="0.5*"/>
|
|
<RowDefinition Height="8*"/>
|
|
<RowDefinition Height="1*"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<Label Name="FilePathTxBl" Background="White" FontSize="15"/>
|
|
<ListBox Name="FileListBox" Grid.Row="1" Grid.RowSpan="2" ItemTemplate="{DynamicResource DataTemplateItem}"
|
|
ItemsSource="{Binding ItemList}"/>
|
|
|
|
<!-- Definizione della Grid superiore per Button -->
|
|
<Grid Name="UpperButtonGrid" Grid.Column="1" Grid.Row="0" Grid.RowSpan="2">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="5*"/>
|
|
<ColumnDefinition Width="7*"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
</Grid>
|
|
|
|
<Image Name="PhotoImage" Grid.Column="1" Grid.Row="0" Grid.RowSpan="3"/>
|
|
|
|
<!-- Definizione della Grid inferiore per Button -->
|
|
<Grid Name="LowerButtonGrid" Grid.Column="1" Grid.Row="3">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="10*"/>
|
|
<ColumnDefinition Width="1*"/>
|
|
<ColumnDefinition Width="1*"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Button Name="OkBtn" Grid.Column="1" Style="{StaticResource OmagCut_GradientBlueIconButton}">
|
|
<Image Source="Resources/V.png" Style="{StaticResource OmagCut_ButtonIcon}"/>
|
|
</Button>
|
|
<Button Name="ExitBtn" Grid.Column="2" Style="{StaticResource OmagCut_GradientBlueIconButton}">
|
|
<Image Source="Resources/X.png" Style="{StaticResource OmagCut_ButtonIcon}"/>
|
|
</Button>
|
|
|
|
</Grid>
|
|
|
|
</Grid>
|
|
|
|
</Border>
|
|
|
|
</UserControl>
|