Fixes to settings
This commit is contained in:
parent
d73389d791
commit
fc7175c2f7
6 changed files with 628 additions and 267 deletions
|
|
@ -730,6 +730,50 @@ namespace ImageCatalog_2
|
|||
}
|
||||
}
|
||||
|
||||
private string _bigPhotoSuffix = "";
|
||||
public string BigPhotoSuffix
|
||||
{
|
||||
get => _bigPhotoSuffix;
|
||||
set
|
||||
{
|
||||
_bigPhotoSuffix = value;
|
||||
NotifyPropertyChanged();
|
||||
}
|
||||
}
|
||||
|
||||
private bool _addTextToThumbnails;
|
||||
public bool AddTextToThumbnails
|
||||
{
|
||||
get => _addTextToThumbnails;
|
||||
set
|
||||
{
|
||||
_addTextToThumbnails = value;
|
||||
NotifyPropertyChanged();
|
||||
}
|
||||
}
|
||||
|
||||
private bool _addRaceTimeToThumbnails;
|
||||
public bool AddRaceTimeToThumbnails
|
||||
{
|
||||
get => _addRaceTimeToThumbnails;
|
||||
set
|
||||
{
|
||||
_addRaceTimeToThumbnails = value;
|
||||
NotifyPropertyChanged();
|
||||
}
|
||||
}
|
||||
|
||||
private bool _addNumberAndTimeToThumbnails;
|
||||
public bool AddNumberAndTimeToThumbnails
|
||||
{
|
||||
get => _addNumberAndTimeToThumbnails;
|
||||
set
|
||||
{
|
||||
_addNumberAndTimeToThumbnails = value;
|
||||
NotifyPropertyChanged();
|
||||
}
|
||||
}
|
||||
|
||||
private void Test(object parameter)
|
||||
{
|
||||
Debug.WriteLine("Yep");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue