|
|
|
@ -2,6 +2,7 @@ using System;
|
|
|
|
|
using System.Collections.Generic; |
|
|
|
|
using System.Collections.ObjectModel; |
|
|
|
|
using System.Diagnostics; |
|
|
|
|
using System.Diagnostics.CodeAnalysis; |
|
|
|
|
using System.Globalization; |
|
|
|
|
using System.IO; |
|
|
|
|
using System.Reflection; |
|
|
|
@ -182,6 +183,13 @@ public partial class SettingsViewModel : ObservableObject
|
|
|
|
|
await dialog.ShowAsync(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
[RelayCommand] |
|
|
|
|
[DoesNotReturn] |
|
|
|
|
private void DebugTriggerException() |
|
|
|
|
{ |
|
|
|
|
throw new Exception("Test exception"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private void ApplyTheme(string value) |
|
|
|
|
{ |
|
|
|
|
switch (value) |
|
|
|
|