444 lines
27 KiB
XML
444 lines
27 KiB
XML
<Window x:Name="MainWindow1" x:Class="WPFCatalog.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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:wpfCatalog="clr-namespace:WPFCatalog"
|
|
mc:Ignorable="d"
|
|
|
|
Title="Image Catalog" Height="466" Width="772"
|
|
d:DataContext="{d:DesignInstance wpfCatalog:MainWindowViewModel}"
|
|
>
|
|
<!--d:DataContext="{d:DesignInstance wpfCatalog:MainWindowViewModel}"-->
|
|
<Window.Resources>
|
|
<Style x:Key="CommonStyle" TargetType="FrameworkElement">
|
|
<Setter Property="Margin" Value="4" />
|
|
</Style>
|
|
<Style TargetType="TextBox" BasedOn="{StaticResource CommonStyle}"></Style>
|
|
<Style TargetType="Button" >
|
|
<Setter Property="Margin" Value="2,2,5,5" />
|
|
</Style>
|
|
<Style TargetType="ComboBox" BasedOn="{StaticResource CommonStyle}"></Style>
|
|
|
|
</Window.Resources>
|
|
<DockPanel LastChildFill="True">
|
|
<Menu DockPanel.Dock="Top" Height="auto">
|
|
<MenuItem Header="Files"/>
|
|
<MenuItem Header="Modifica"></MenuItem>
|
|
<MenuItem Header="?"></MenuItem>
|
|
|
|
|
|
</Menu>
|
|
<StatusBar DockPanel.Dock="Bottom" Height="auto">
|
|
<StatusBarItem>
|
|
<ProgressBar Width="510" Height="10">
|
|
|
|
</ProgressBar>
|
|
</StatusBarItem>
|
|
</StatusBar>
|
|
<DockPanel >
|
|
<!--<Grid.ColumnDefinitions>
|
|
<ColumnDefinition/>
|
|
<ColumnDefinition/>
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition/>
|
|
</Grid.RowDefinitions>-->
|
|
<TabControl DockPanel.Dock="Left" Width="520">
|
|
<TabItem>
|
|
<TabItem.Header>
|
|
<StackPanel Orientation="Horizontal">
|
|
|
|
<TextBlock Text="Generale" Margin="0,0,5,0"/>
|
|
<Image Source="Icons/camera-photo-5.png" Width="16" Height="16" />
|
|
</StackPanel>
|
|
</TabItem.Header>
|
|
<WrapPanel>
|
|
<GroupBox Header="Directory" >
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition />
|
|
<RowDefinition />
|
|
<RowDefinition />
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition />
|
|
<ColumnDefinition Width="400"/>
|
|
<ColumnDefinition Width="30"/>
|
|
<ColumnDefinition Width="30"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
|
<Label Grid.Row="0" Grid.Column="0" Content="Sorgente"/>
|
|
<TextBox Grid.Row="0" Grid.Column="1" x:Name="txtSorgente" Margin="0,5" Text="{Binding DirSorgente}" />
|
|
<Button Grid.Row="0" Grid.Column="2" x:Name="btnSelectSorgente" Margin="5,5" Command="{Binding SelectSourceFolderCommand}">
|
|
<Button.Content>
|
|
<Image Source="Icons/document-open-6.png" />
|
|
</Button.Content>
|
|
</Button>
|
|
<Button Grid.Row="0" Grid.Column="3" x:Name="btnOpenSorgente" Margin="5,5" Command="{Binding OpenSourceFolderCommand}">
|
|
<Button.Content>
|
|
<Image Source="Icons/document-open-folder.png" />
|
|
</Button.Content>
|
|
</Button>
|
|
|
|
<Label Grid.Row="1" Grid.Column="0" Content="Destinazione"/>
|
|
<TextBox Grid.Row="1" Grid.Column="1" x:Name="txtDestinazione" Margin="0,5" Text="{Binding DirDestinazione}"/>
|
|
<Button Grid.Row="1" Grid.Column="2" x:Name="btnSelectDestinazione" Margin="5,5" Command="{Binding SelectDestinationFolderCommand}">
|
|
<Button.Content>
|
|
<Image Source="Icons/document-open-6.png" />
|
|
</Button.Content>
|
|
</Button>
|
|
<Button Grid.Row="1" Grid.Column="3" x:Name="btnOpenDestinazione" Margin="5.4,0,4.6,4.6" Command="{Binding OpenDestinationFolderCommand}" Height="19" VerticalAlignment="Bottom">
|
|
<Button.Content>
|
|
<Image Source="Icons/document-open-folder.png" />
|
|
</Button.Content>
|
|
</Button>
|
|
<CheckBox Grid.Row="2" Grid.Column="1" Content="Aggiorna le sottodirectory" x:Name="chkAggiornaSottodirectory" IsChecked="{Binding DirAggiornaSottoDirectory}"/>
|
|
|
|
</Grid>
|
|
|
|
</GroupBox>
|
|
<GroupBox Header="Generale" Margin="2">
|
|
<StackPanel Orientation="Vertical" >
|
|
<CheckBox Content="Aggiorna JPG" x:Name="chkForzaJPG" IsChecked="{Binding GeneraleForzaJPG}" Margin="2"/>
|
|
<CheckBox Content="Rotazione Automatica" x:Name="chkRotazioneAutomatica" IsChecked="{Binding GeneraleRotazioneAutomatica}" Margin="2"/>
|
|
<CheckBox Content="Sovrascrivi File" x:Name="chkSovrascriviFile" IsChecked="{Binding GeneraleSovrascriviFile}" Margin="2"/>
|
|
</StackPanel>
|
|
</GroupBox>
|
|
<GroupBox Header="Sottocartelle" Margin="2">
|
|
<StackPanel Orientation="Vertical">
|
|
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition />
|
|
<ColumnDefinition />
|
|
<ColumnDefinition />
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition />
|
|
<RowDefinition />
|
|
<RowDefinition />
|
|
|
|
</Grid.RowDefinitions>
|
|
<CheckBox Grid.Row="0" Grid.Column="1" Content="Crea Sottocartelle" x:Name="chkCreaSottocartelle" Margin="4,0,0,0" IsChecked="{Binding SubdirCreaSottoCartelle}"/>
|
|
<Label Grid.Row="1" Grid.Column="0" Content="Ogni"/>
|
|
<StackPanel Orientation="Horizontal" Grid.Row="1" Grid.Column="1">
|
|
<TextBox Width="50" HorizontalAlignment="Left" x:Name="txtOgni" Text="{Binding SubdirIntervalloFile}"/>
|
|
<Label Content="file"/>
|
|
</StackPanel>
|
|
|
|
<Label Grid.Row="2" Grid.Column="0" Content="Suffisso" />
|
|
<TextBox Grid.Row="2" Grid.Column="1" HorizontalAlignment="Stretch" x:Name="txtSuffisso" Text="{Binding SubdirSuffisso}"/>
|
|
</Grid>
|
|
|
|
<StackPanel Orientation="Horizontal" >
|
|
<Label Content="Num. Cifre Contatore" />
|
|
<TextBox Width="40" HorizontalAlignment="Right" x:Name="txtNumCifreContatore" Text="{Binding SubdirCifreContatore}"/>
|
|
|
|
</StackPanel>
|
|
<RadioButton Content="Numerazione Progressiva" IsChecked="{Binding SubdirNumerazioneProgressiva}" x:Name="rdbNumerazioneProgressiva" />
|
|
<RadioButton Content="Numerazione Files" x:Name="rdbNumerazioneFiles" IsChecked="{Binding SubdirNumerazioneFiles}"/>
|
|
</StackPanel>
|
|
</GroupBox>
|
|
<GroupBox Margin="2">
|
|
<GroupBox.Header>
|
|
<StackPanel Orientation="Horizontal">
|
|
<Image Source="Icons/photo.png" />
|
|
<TextBlock Text="Foto" Margin="5,0,0,0" />
|
|
</StackPanel>
|
|
</GroupBox.Header>
|
|
<Grid >
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition/>
|
|
<RowDefinition/>
|
|
<RowDefinition/>
|
|
<RowDefinition/>
|
|
<RowDefinition/>
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="15*"/>
|
|
<ColumnDefinition Width="48*"/>
|
|
<ColumnDefinition Width="88*"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Label Grid.Row="0" Grid.Column="0" Content="Altezza" Grid.ColumnSpan="2" Margin="0,0,0,2" />
|
|
<TextBox Grid.Row="0" Grid.Column="2" Width="80" Margin="4,4,4,6" Text="{Binding FotoAltezza}"/>
|
|
|
|
|
|
<Label Grid.Column="0" Content="Larghezza" Grid.ColumnSpan="2" Margin="0,26,0,2" Grid.RowSpan="2" />
|
|
<TextBox Grid.Row="1" Grid.Column="2" Width="80" Margin="4,2,4,6" Text="{Binding FotoLarghezza}"></TextBox>
|
|
|
|
<Label Grid.Row="1" Grid.Column="0" Content="Qualità" Grid.ColumnSpan="2" Margin="0,24,0,1" Grid.RowSpan="2" />
|
|
<TextBox Grid.Row="2" Grid.Column="2" Width="80" Margin="4,2,4,5" />
|
|
|
|
<CheckBox Grid.Row="3" Grid.Column="1" HorizontalAlignment="Right" VerticalAlignment="Center" Margin="0,16,0,17.88" IsChecked="{Binding FotoMantieniDimensioni}"/>
|
|
<TextBlock Grid.Row="3" Grid.Column="2" Text="Mantieni Dimensioni Originali" TextWrapping="WrapWithOverflow" Width="80" Margin="4,0,4,25.88" Grid.RowSpan="2" />
|
|
|
|
<Label Grid.Row="4" Grid.Column="0" Content="Suffisso" Grid.ColumnSpan="2" Margin="0,0.12,0,-0.12" />
|
|
<TextBox Grid.Row="4" Grid.Column="2" Width="80" Margin="4,4.12,4,3.88" Text="{Binding FotoSuffisso}" />
|
|
</Grid>
|
|
</GroupBox>
|
|
</WrapPanel>
|
|
</TabItem>
|
|
<TabItem>
|
|
<TabItem.Header>
|
|
<StackPanel Orientation="Horizontal">
|
|
|
|
<CheckBox VerticalAlignment="Center" IsChecked="{Binding TestoAttivo}"/>
|
|
<Label Content="Testo" VerticalAlignment="Center"/>
|
|
<Image Source="Icons/format-justify-left-2.png" />
|
|
</StackPanel>
|
|
</TabItem.Header>
|
|
<StackPanel Orientation="Vertical">
|
|
<StackPanel Orientation="Horizontal">
|
|
<GroupBox Header="Carattere">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition/>
|
|
<RowDefinition/>
|
|
<RowDefinition/>
|
|
<RowDefinition/>
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition/>
|
|
<ColumnDefinition/>
|
|
<ColumnDefinition/>
|
|
<ColumnDefinition/>
|
|
</Grid.ColumnDefinitions>
|
|
<Label Grid.Row="0" Grid.Column="0" Content="Font"/>
|
|
<ComboBox Grid.Row="0" Grid.Column="1" Grid.ColumnSpan="2" Width="100" HorizontalAlignment="Right" SelectedItem="{Binding CarattereFont}" />
|
|
<!--todo-->
|
|
|
|
<CheckBox Grid.Row="0" Grid.Column="3" Content="Grassetto" VerticalAlignment="Center" IsChecked="{Binding CarattereGrassetto}" />
|
|
|
|
<Label Grid.Row="1" Grid.Column="0" Grid.ColumnSpan="2" Content="Dimensione"/>
|
|
<TextBox Grid.Row="1" Grid.Column="2" Text="{Binding CarattereDimensione}"/>
|
|
|
|
<Label Grid.Row="2" Grid.Column="0" Grid.ColumnSpan="2" Content="Dimensione Miniatura"/>
|
|
<TextBox Grid.Row="2" Grid.Column="2" Text="{Binding CarattereDimensioneMiniatura}"/>
|
|
|
|
<Label Grid.Row="3" Grid.Column="0" Grid.ColumnSpan="2" Content="Colore RGB" />
|
|
|
|
<TextBox Grid.Row="3" Grid.Column="2" Text="{Binding CarattereColoreRGB}"/>
|
|
<Button Grid.Row="3" Grid.Column="3" Content="Scegli..." />
|
|
|
|
|
|
</Grid>
|
|
</GroupBox>
|
|
<StackPanel Orientation="Vertical" VerticalAlignment="Stretch">
|
|
<GroupBox Header="Slide Show" VerticalAlignment="Stretch">
|
|
<StackPanel Orientation="Horizontal" >
|
|
<CheckBox Content="Data" Margin="5,0" IsChecked="{Binding SlideshowData}"/>
|
|
<CheckBox Content="Numero Foto" Margin="5,0" IsChecked="{Binding SlideshowNumeroFoto}"/>
|
|
</StackPanel>
|
|
</GroupBox>
|
|
<GroupBox Header="Testo foto verticali" VerticalAlignment="Stretch">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition />
|
|
<RowDefinition />
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition />
|
|
<ColumnDefinition />
|
|
</Grid.ColumnDefinitions>
|
|
<Label Grid.Row="0" Grid.Column="0" Content="Dimensione Carattere"/>
|
|
<TextBox Grid.Row="0" Grid.Column="1" Width="40" Text="{Binding TestoVertDimensioneCarattere}"/>
|
|
<Label Grid.Row="1" Grid.Column="0" Content="Margine"/>
|
|
<TextBox Grid.Row="1" Grid.Column="1" Width="40" Text="{Binding TestoVertMargine}"/>
|
|
</Grid>
|
|
</GroupBox>
|
|
</StackPanel>
|
|
</StackPanel>
|
|
<GroupBox Header="Testo da applicare">
|
|
<StackPanel Orientation="Vertical">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition />
|
|
<RowDefinition />
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto"/>
|
|
<ColumnDefinition />
|
|
</Grid.ColumnDefinitions>
|
|
<Label Grid.Row="0" Grid.Column="0" Content="Orizzontale" />
|
|
<Label Grid.Row="1" Grid.Column="0" Content="Verticale" />
|
|
<TextBox Grid.Row="0" Grid.Column="1" Text="{Binding TestoApplicareOrizzontale}"/>
|
|
<TextBox Grid.Row="1" Grid.Column="1" Height="50" MaxLines="4" AcceptsReturn="True" Text="{Binding TestoApplicareVerticale}"/>
|
|
</Grid>
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition />
|
|
<RowDefinition />
|
|
<RowDefinition />
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition />
|
|
<ColumnDefinition />
|
|
<ColumnDefinition Width="Auto"/>
|
|
<ColumnDefinition />
|
|
<ColumnDefinition />
|
|
<ColumnDefinition />
|
|
<ColumnDefinition />
|
|
<ColumnDefinition />
|
|
</Grid.ColumnDefinitions>
|
|
<Label Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="2" Content="Trasparenza(0-100%)" />
|
|
<TextBox Grid.Row="0" Grid.Column="2" Text="{Binding TestoApplicareTrasparenza}" />
|
|
|
|
<Label Grid.Row="1" Grid.Column="0" Content="Posizione" />
|
|
<ComboBox Grid.Row="1" Grid.Column="1" Grid.ColumnSpan="2" />
|
|
<!--ToDo-->
|
|
|
|
<CheckBox Grid.Row="2" Grid.Column="1" Content="Orario" IsChecked="{Binding TestoApplicareOrario}"/>
|
|
<CheckBox Grid.Row="2" Grid.Column="2" Content="Tempo Gara" IsChecked="{Binding TestoApplicareTempoGaraCheck}"/>
|
|
|
|
<TextBox Grid.Row="2" Grid.Column="3" Grid.ColumnSpan="2" Text="{Binding TestoApplicareTempoGara}"/>
|
|
|
|
<Label Grid.Row="0" Grid.Column="4" Grid.ColumnSpan="2" Content="Margine (pixel)" HorizontalAlignment="Right" />
|
|
<TextBox Grid.Row="0" Grid.Column="6" Grid.ColumnSpan="2" Text="{Binding TestoApplicareMargine}"/>
|
|
|
|
<Label Grid.Row="1" Grid.Column="4" Grid.ColumnSpan="2" Content="Allineamento" HorizontalAlignment="Right" />
|
|
<TextBox Grid.Row="1" Grid.Column="6" Grid.ColumnSpan="2" Text="{Binding TestoApplicareAllineamento}"/>
|
|
|
|
<Label Grid.Row="2" Grid.Column="5" Content="Partenza" />
|
|
<ComboBox Grid.Row="2" Grid.Column="6" Grid.ColumnSpan="2" />
|
|
<!--todo-->
|
|
</Grid>
|
|
</StackPanel>
|
|
</GroupBox>
|
|
</StackPanel>
|
|
</TabItem>
|
|
<TabItem>
|
|
<TabItem.Header>
|
|
<StackPanel Orientation="Horizontal">
|
|
|
|
<CheckBox VerticalAlignment="Center" />
|
|
<Label VerticalAlignment="Center" Content="Miniature" />
|
|
<Image Source="Icons/picture.png" />
|
|
</StackPanel>
|
|
</TabItem.Header>
|
|
<WrapPanel>
|
|
<GroupBox Header="Miniature">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition />
|
|
<RowDefinition />
|
|
<RowDefinition />
|
|
<RowDefinition />
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition />
|
|
<ColumnDefinition Width="100"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Label Grid.Row="0" Grid.Column="0" Content="Suffisso" />
|
|
<TextBox Grid.Row="0" Grid.Column="1" Text="{Binding MiniatureSuffisso}"/>
|
|
|
|
<Label Grid.Row="1" Grid.Column="0" Content="Larghezza" />
|
|
<TextBox Grid.Row="1" Grid.Column="1" Text="{Binding MiniatureLarghezza}"/>
|
|
|
|
<Label Grid.Row="2" Grid.Column="0" Content="Altezza" />
|
|
<TextBox Grid.Row="2" Grid.Column="1" Text="{Binding MiniatureAltezza}"/>
|
|
|
|
<Label Grid.Row="3" Grid.Column="0" Content="Qualità" />
|
|
<TextBox Grid.Row="3" Grid.Column="1" Text="{Binding MiniatureQualita}"/>
|
|
</Grid>
|
|
</GroupBox>
|
|
<GroupBox Header="Testo Miniature" >
|
|
<WrapPanel Orientation="Vertical" >
|
|
<RadioButton Content="Aggiungi Scritta" Margin="4,2,4,2" IsChecked="{Binding TestoMinAggiungiScritta}" />
|
|
<RadioButton Content="Aggiungi Orario" Margin="4,2,4,2" IsChecked="{Binding TestoMinAggiungiOrario}"/>
|
|
<RadioButton Content="Tempo Gara" Margin="4,2,4,2" IsChecked="{Binding TestoMinTempoGara}"/>
|
|
<RadioButton Content="Numero Foto" Margin="4,2,4,2" IsChecked="{Binding TestoMinNumeroFoto}"/>
|
|
<RadioButton Content="Numero + Tempo" Margin="4,2,4,2" IsChecked="{Binding TestoMinNumeroTempo}"></RadioButton>
|
|
</WrapPanel>
|
|
</GroupBox>
|
|
</WrapPanel>
|
|
|
|
</TabItem>
|
|
<TabItem>
|
|
<TabItem.Header>
|
|
<StackPanel Orientation="Horizontal">
|
|
|
|
<CheckBox VerticalAlignment="Center" />
|
|
<Label VerticalAlignment="Center" Content="Logo" />
|
|
<Image Source="Icons/face-smile-2.png"/>
|
|
</StackPanel>
|
|
</TabItem.Header>
|
|
|
|
<WrapPanel>
|
|
<GroupBox Header="Logo">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition />
|
|
<RowDefinition />
|
|
<RowDefinition />
|
|
<RowDefinition />
|
|
<RowDefinition />
|
|
<RowDefinition />
|
|
<RowDefinition />
|
|
<RowDefinition />
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto"/>
|
|
<ColumnDefinition Width="50" />
|
|
<ColumnDefinition Width="50"/>
|
|
<ColumnDefinition Width="200"/>
|
|
<ColumnDefinition Width="30"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Label Grid.Row="0" Grid.Column="0" Content="Percorso Immagine"/>
|
|
<TextBox Grid.Row="0" Grid.Column="1" Grid.ColumnSpan="3" Text="{Binding LogoPercorsoImmagine}"/>
|
|
<Button Grid.Row="0" Grid.Column="4" Content="..." Command="{Binding ScegliLogoCommand}" />
|
|
|
|
<Label Grid.Row="1" Grid.Column="0" Content="Altezza" />
|
|
<TextBox Grid.Row="1" Grid.Column="1" Grid.ColumnSpan="2" Text="{Binding LogoAltezza}" />
|
|
|
|
<Label Grid.Row="2" Grid.Column="0" Content="Larghezza" />
|
|
<TextBox Grid.Row="2" Grid.Column="1" Grid.ColumnSpan="2" Text="{Binding LogoLarghezza}" />
|
|
|
|
<Label Grid.Row="3" Grid.Column="0" Content="Trasparenza (0-100%)" />
|
|
<TextBox Grid.Row="3" Grid.Column="1" Grid.ColumnSpan="2" Text="{Binding LogoTrasparenza}" />
|
|
|
|
<Label Grid.Row="4" Grid.Column="0" Content="Margine (pixel %)" />
|
|
<TextBox Grid.Row="4" Grid.Column="1" Grid.ColumnSpan="2" Text="{Binding LogoMargine}" />
|
|
|
|
<Label Grid.Row="5" Grid.Column="0" Content="Posizione Orizzontale" />
|
|
<ComboBox Grid.Row="5" Grid.Column="1" Grid.ColumnSpan="2" />
|
|
<!--todo-->
|
|
|
|
<Label Grid.Row="6" Grid.Column="0" Content="Posizione Verticale" />
|
|
<ComboBox Grid.Row="6" Grid.Column="1" Grid.ColumnSpan="2" />
|
|
<!--todo-->
|
|
|
|
<Label Grid.Row="7" Grid.Column="0" Content="Colore Trasparente" />
|
|
<Image Grid.Row="7" Grid.Column="1" Width="24" Height="24" HorizontalAlignment="Left" />
|
|
<Image Grid.Row="7" Grid.Column="8" Width="24" Height="24" HorizontalAlignment="Right" />
|
|
|
|
<Image Grid.Row="1" Grid.Column="3" Grid.RowSpan="7" />
|
|
|
|
</Grid>
|
|
</GroupBox>
|
|
</WrapPanel>
|
|
|
|
</TabItem>
|
|
</TabControl>
|
|
<StackPanel DockPanel.Dock="Right" Orientation="Vertical">
|
|
<GroupBox DockPanel.Dock="Right" Header="Statistiche">
|
|
<StackPanel Orientation="Vertical">
|
|
<StackPanel Orientation="Horizontal">
|
|
<Button Content="Carica Impostazioni" Command="{Binding ImportSettingsCommand}"></Button>
|
|
<Button Content="Salva Impostazioni" Command="{Binding ExportSettingsCommand}" ></Button>
|
|
</StackPanel>
|
|
<Button Content="Start"></Button>
|
|
<Button Content="STOP" Command="{Binding StopCommand}"/>
|
|
</StackPanel>
|
|
</GroupBox>
|
|
</StackPanel>
|
|
|
|
</DockPanel>
|
|
|
|
</DockPanel>
|
|
|
|
|
|
|
|
</Window>
|