-
Notifications
You must be signed in to change notification settings - Fork 0
/
SettingsPage.xaml.cs
94 lines (83 loc) · 3.25 KB
/
SettingsPage.xaml.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
using Microsoft.UI.Xaml;
using Microsoft.UI.Xaml.Controls;
using Microsoft.UI.Xaml.Controls.Primitives;
using Microsoft.UI.Xaml.Data;
using Microsoft.UI.Xaml.Input;
using Microsoft.UI.Xaml.Media;
using Microsoft.UI.Xaml.Navigation;
using RadioParadisePlayer.Helpers;
using RadioParadisePlayer.Logic;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices.WindowsRuntime;
using Windows.Foundation;
using Windows.Foundation.Collections;
// To learn more about WinUI, the WinUI project structure,
// and more about our project templates, see: http://aka.ms/winui-project-info.
namespace RadioParadisePlayer
{
/// <summary>
/// An empty page that can be used on its own or navigated to within a Frame.
/// </summary>
internal sealed partial class SettingsPage : Page
{
SettingsViewModel vmSettings { get; set; }
public SettingsPage()
{
this.InitializeComponent();
this.Loaded += SettingsPage_Loaded;
}
protected override void OnNavigatedTo(NavigationEventArgs e)
{
vmSettings = e.Parameter as SettingsViewModel;
base.OnNavigatedTo(e);
}
private async void SettingsPage_Loaded(object sender, RoutedEventArgs e)
{
//Fixes an issue in WinUI 3: https://github.com/microsoft/microsoft-ui-xaml/issues/6335
rbBitRate.UpdateLayout();
rbBitRate.SelectedIndex = vmSettings.SelectedBitRate;
await vmSettings.Initialize();
rbChannel.UpdateLayout();
//TO DO: Implement in a better way with proper error handling
rbChannel.SelectedIndex = Int32.Parse(vmSettings.SelectedChannel ?? "0");
rbAppTheme.SelectedIndex = (int)vmSettings.AppTheme;
rbAppTheme.UpdateLayout();
}
private void rbBitRate_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
if (rbBitRate.SelectedIndex != vmSettings.SelectedBitRate)
{
vmSettings.SelectedBitRate = rbBitRate.SelectedIndex;
}
}
private void rbChannel_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
var selectedChannel = rbChannel.SelectedItem as ChannelView;
if (selectedChannel?.Chan != vmSettings.SelectedChannel)
{
vmSettings.SelectedChannel = selectedChannel?.Chan;
}
}
private void rbAppTheme_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
switch (rbAppTheme.SelectedIndex)
{
case -1: break; //This is also called, obviously when the item is initialized.
case 0: //Light
vmSettings.AppTheme = ElementTheme.Default;
break;
case 1: //Light
vmSettings.AppTheme = ElementTheme.Light;
break;
case 2: //Light
vmSettings.AppTheme = ElementTheme.Dark;
break;
default:
throw new ArgumentOutOfRangeException("Theme option not supported.");
}
}
}
}