Updated libraries and made horizontal text property

This commit is contained in:
Marco 2025-07-28 09:49:55 +02:00
commit 65aeabdfee
6 changed files with 30 additions and 17 deletions

View file

@ -54,6 +54,18 @@ namespace ImageCatalog_2
}
}
private string _horizontalText;
public string HorizontalText
{
get => _horizontalText;
set
{
_horizontalText = value;
NotifyPropertyChanged();
}
}
private bool _uiEnabled = true;
public bool UiEnabled