Skip to content

Commit

Permalink
Add resizing changed event
Browse files Browse the repository at this point in the history
  • Loading branch information
dogzz9445 committed Jun 17, 2024
1 parent 6afcc27 commit 1e4c4ec
Show file tree
Hide file tree
Showing 5 changed files with 370 additions and 27 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,23 +27,41 @@ public partial class OrganizerSettingsViewModel : ObservableRecipient
private bool _isInitialized = false;
#endregion

#region 11. 설정파일

[ObservableProperty]
private string _appVersion = string.Empty;
private bool? _useGlobalConfiguration;

[ObservableProperty]
private ApplicationTheme _currentApplicationTheme = ApplicationTheme.Unknown;
private bool? _useAppPathConfiguration;

[ObservableProperty]
private ApplicationLanguage _currentApplicationLanguage = ApplicationLanguage.Unknown;
private string _customPath;

#endregion

#region 12. 게스트 모드
[ObservableProperty]
private bool? _useGlobalConfiguration;
private bool? _useGuestMode = false;

[ObservableProperty]
private bool? _useAppPathConfiguration;
private bool? _showSettingsButtonOnDashboard = true;

[ObservableProperty]
private string _customPath;
private string _username;

[ObservableProperty]
private string _password;
#endregion

[ObservableProperty]
private string _appVersion = string.Empty;

[ObservableProperty]
private ApplicationTheme _currentApplicationTheme = ApplicationTheme.Unknown;

[ObservableProperty]
private ApplicationLanguage _currentApplicationLanguage = ApplicationLanguage.Unknown;

public OrganizerSettingsViewModel(
IThemeService themeService,
Expand Down
Loading

0 comments on commit 1e4c4ec

Please sign in to comment.