Cleaned up old code

This commit is contained in:
Marco 2025-07-28 10:34:03 +02:00
commit a21522a916
15 changed files with 17 additions and 7332 deletions

View file

@ -65,12 +65,23 @@ namespace ImageCatalog_2
NotifyPropertyChanged();
}
}
private string _verticalText;
public string VerticalText
{
get => _verticalText;
set
{
_verticalText = value;
NotifyPropertyChanged();
}
}
private bool _uiEnabled = true;
public bool UiEnabled
{
get { return _uiEnabled; }
get => _uiEnabled;
set
{
_uiEnabled = value;