Add new tab views for image catalog functionality

- 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.
This commit is contained in:
MaddoScientisto 2026-02-28 21:48:05 +01:00
commit 90fb03bf0c
18 changed files with 1322 additions and 1008 deletions

View file

@ -0,0 +1,11 @@
using Avalonia.Controls;
namespace ImageCatalog_2.AvaloniaViews;
public partial class TextTabView : Avalonia.Controls.UserControl
{
public TextTabView()
{
InitializeComponent();
}
}