Cleaned up old code
This commit is contained in:
parent
63aac7f911
commit
a21522a916
15 changed files with 17 additions and 7332 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue