- Implement GeneralTabView for source and destination path settings, options, processing parameters, and image library selection. - Create LogoTabView for logo selection, preview, and positioning options. - Add PhotoTabView for photo dimensions and JPEG quality settings. - Introduce RaceUploadTabView for race setup and processed photo upload functionality, including API integration. - Develop TextTabView for horizontal and vertical text settings, font options, and race time configuration. - Implement ThumbnailsTabView for thumbnail creation options and settings.
27 lines
1.5 KiB
XML
27 lines
1.5 KiB
XML
<UserControl xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
x:Class="ImageCatalog_2.AvaloniaViews.PhotoTabView">
|
|
<ScrollViewer>
|
|
<StackPanel Margin="8">
|
|
<TextBlock Text="Dimensioni foto grandi" FontWeight="Bold" />
|
|
<StackPanel Orientation="Horizontal" Margin="0,6,0,0">
|
|
<TextBox Text="{Binding PhotoBigWidth}" Width="80" />
|
|
<TextBox Text="{Binding PhotoBigHeight}" Width="80" Margin="8,0,0,0" />
|
|
</StackPanel>
|
|
|
|
<TextBlock Text="Opzioni foto" FontWeight="Bold" Margin="0,8,0,0" />
|
|
<StackPanel Margin="0,6,0,0">
|
|
<CheckBox Content="Mantieni dimensioni originali" IsChecked="{Binding KeepOriginalDimensions}" />
|
|
<CheckBox Content="Rotazione automatica" IsChecked="{Binding AutomaticRotation}" />
|
|
</StackPanel>
|
|
|
|
<TextBlock Text="JPEG" FontWeight="Bold" Margin="0,8,0,0" />
|
|
<StackPanel Orientation="Horizontal" Margin="0,6,0,0">
|
|
<TextBlock Text="Qualita:" VerticalAlignment="Center" />
|
|
<TextBox Text="{Binding JpegQuality}" Width="60" Margin="8,0,0,0" />
|
|
<TextBlock Text="Miniature Qualita:" VerticalAlignment="Center" Margin="12,0,0,0" />
|
|
<TextBox Text="{Binding JpegQualityThumbnail}" Width="60" Margin="8,0,0,0" />
|
|
</StackPanel>
|
|
</StackPanel>
|
|
</ScrollViewer>
|
|
</UserControl>
|