Add a menu for changing themes
This commit is contained in:
parent
b00dfc6f5b
commit
41dd2b0f64
|
@ -4,12 +4,12 @@
|
||||||
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||||
xmlns:local="clr-namespace:TodoDetails"
|
xmlns:local="clr-namespace:TodoDetails"
|
||||||
Shell.FlyoutBehavior="Disabled"
|
xmlns:view="clr-namespace:TodoDetails.View"
|
||||||
Title="TodoDetails">
|
Shell.FlyoutBehavior="Flyout">
|
||||||
|
<ShellContent Title="Home"
|
||||||
<ShellContent
|
ContentTemplate="{DataTemplate local:MainPage}"
|
||||||
Title="Home"
|
Route="MainPage" />
|
||||||
ContentTemplate="{DataTemplate local:MainPage}"
|
<ShellContent Title="Settings"
|
||||||
Route="MainPage" />
|
ContentTemplate="{DataTemplate view:SettingsPage}"
|
||||||
|
Route="SettingsPage"/>
|
||||||
</Shell>
|
</Shell>
|
||||||
|
|
|
@ -24,6 +24,8 @@ namespace TodoDetails
|
||||||
builder.Services.AddSingleton<TodoService>();
|
builder.Services.AddSingleton<TodoService>();
|
||||||
builder.Services.AddSingleton<TodosViewModel>();
|
builder.Services.AddSingleton<TodosViewModel>();
|
||||||
builder.Services.AddSingleton<MainPage>();
|
builder.Services.AddSingleton<MainPage>();
|
||||||
|
builder.Services.AddSingleton<SettingsViewModel>();
|
||||||
|
builder.Services.AddSingleton<SettingsPage>();
|
||||||
builder.Services.AddTransient<TodoDetailsViewModel>();
|
builder.Services.AddTransient<TodoDetailsViewModel>();
|
||||||
builder.Services.AddTransient<TodoDetailsPage>();
|
builder.Services.AddTransient<TodoDetailsPage>();
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<ResourceDictionary xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||||
|
x:Class="TodoDetails.Resources.Styles.ThemeStyles">
|
||||||
|
|
||||||
|
</ResourceDictionary>
|
|
@ -0,0 +1,9 @@
|
||||||
|
namespace TodoDetails.Resources.Styles;
|
||||||
|
|
||||||
|
public partial class ThemeStyles : ResourceDictionary
|
||||||
|
{
|
||||||
|
public ThemeStyles()
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
}
|
||||||
|
}
|
6
Tasks/Lab12/TodoDetails/Resources/Themes/BasicTheme.xaml
Normal file
6
Tasks/Lab12/TodoDetails/Resources/Themes/BasicTheme.xaml
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<ResourceDictionary xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||||
|
x:Class="TodoDetails.Resources.Themes.BasicTheme">
|
||||||
|
|
||||||
|
</ResourceDictionary>
|
|
@ -0,0 +1,9 @@
|
||||||
|
namespace TodoDetails.Resources.Themes;
|
||||||
|
|
||||||
|
public partial class BasicTheme : ResourceDictionary
|
||||||
|
{
|
||||||
|
public BasicTheme()
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
}
|
||||||
|
}
|
6
Tasks/Lab12/TodoDetails/Resources/Themes/Dark.xaml
Normal file
6
Tasks/Lab12/TodoDetails/Resources/Themes/Dark.xaml
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<ResourceDictionary xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||||
|
x:Class="TodoDetails.Resources.Themes.Dark">
|
||||||
|
|
||||||
|
</ResourceDictionary>
|
9
Tasks/Lab12/TodoDetails/Resources/Themes/Dark.xaml.cs
Normal file
9
Tasks/Lab12/TodoDetails/Resources/Themes/Dark.xaml.cs
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
namespace TodoDetails.Resources.Themes;
|
||||||
|
|
||||||
|
public partial class Dark : ResourceDictionary
|
||||||
|
{
|
||||||
|
public Dark()
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
}
|
||||||
|
}
|
6
Tasks/Lab12/TodoDetails/Resources/Themes/Earth.xaml
Normal file
6
Tasks/Lab12/TodoDetails/Resources/Themes/Earth.xaml
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<ResourceDictionary xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||||
|
x:Class="TodoDetails.Resources.Themes.Earth">
|
||||||
|
|
||||||
|
</ResourceDictionary>
|
9
Tasks/Lab12/TodoDetails/Resources/Themes/Earth.xaml.cs
Normal file
9
Tasks/Lab12/TodoDetails/Resources/Themes/Earth.xaml.cs
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
namespace TodoDetails.Resources.Themes;
|
||||||
|
|
||||||
|
public partial class Earth : ResourceDictionary
|
||||||
|
{
|
||||||
|
public Earth()
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
}
|
||||||
|
}
|
6
Tasks/Lab12/TodoDetails/Resources/Themes/Light.xaml
Normal file
6
Tasks/Lab12/TodoDetails/Resources/Themes/Light.xaml
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<ResourceDictionary xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||||
|
x:Class="TodoDetails.Resources.Themes.Light">
|
||||||
|
|
||||||
|
</ResourceDictionary>
|
9
Tasks/Lab12/TodoDetails/Resources/Themes/Light.xaml.cs
Normal file
9
Tasks/Lab12/TodoDetails/Resources/Themes/Light.xaml.cs
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
namespace TodoDetails.Resources.Themes;
|
||||||
|
|
||||||
|
public partial class Light : ResourceDictionary
|
||||||
|
{
|
||||||
|
public Light()
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
}
|
||||||
|
}
|
6
Tasks/Lab12/TodoDetails/Resources/Themes/Pink.xaml
Normal file
6
Tasks/Lab12/TodoDetails/Resources/Themes/Pink.xaml
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<ResourceDictionary xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||||
|
x:Class="TodoDetails.Resources.Themes.Pink">
|
||||||
|
|
||||||
|
</ResourceDictionary>
|
9
Tasks/Lab12/TodoDetails/Resources/Themes/Pink.xaml.cs
Normal file
9
Tasks/Lab12/TodoDetails/Resources/Themes/Pink.xaml.cs
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
namespace TodoDetails.Resources.Themes;
|
||||||
|
|
||||||
|
public partial class Pink : ResourceDictionary
|
||||||
|
{
|
||||||
|
public Pink()
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
}
|
||||||
|
}
|
|
@ -68,6 +68,27 @@
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<MauiXaml Update="Resources\Styles\ThemeStyles.xaml">
|
||||||
|
<Generator>MSBuild:Compile</Generator>
|
||||||
|
</MauiXaml>
|
||||||
|
<MauiXaml Update="Resources\Themes\BasicTheme.xaml">
|
||||||
|
<Generator>MSBuild:Compile</Generator>
|
||||||
|
</MauiXaml>
|
||||||
|
<MauiXaml Update="Resources\Themes\Dark.xaml">
|
||||||
|
<Generator>MSBuild:Compile</Generator>
|
||||||
|
</MauiXaml>
|
||||||
|
<MauiXaml Update="Resources\Themes\Earth.xaml">
|
||||||
|
<Generator>MSBuild:Compile</Generator>
|
||||||
|
</MauiXaml>
|
||||||
|
<MauiXaml Update="Resources\Themes\Light.xaml">
|
||||||
|
<Generator>MSBuild:Compile</Generator>
|
||||||
|
</MauiXaml>
|
||||||
|
<MauiXaml Update="Resources\Themes\Pink.xaml">
|
||||||
|
<Generator>MSBuild:Compile</Generator>
|
||||||
|
</MauiXaml>
|
||||||
|
<MauiXaml Update="View\SettingsPage.xaml">
|
||||||
|
<Generator>MSBuild:Compile</Generator>
|
||||||
|
</MauiXaml>
|
||||||
<MauiXaml Update="View\TodoDetailsPage.xaml">
|
<MauiXaml Update="View\TodoDetailsPage.xaml">
|
||||||
<Generator>MSBuild:Compile</Generator>
|
<Generator>MSBuild:Compile</Generator>
|
||||||
</MauiXaml>
|
</MauiXaml>
|
||||||
|
|
16
Tasks/Lab12/TodoDetails/View/SettingsPage.xaml
Normal file
16
Tasks/Lab12/TodoDetails/View/SettingsPage.xaml
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||||
|
xmlns:viewmodel="clr-namespace:TodoDetails.ViewModel"
|
||||||
|
x:Class="TodoDetails.View.SettingsPage"
|
||||||
|
x:DataType="viewmodel:SettingsViewModel"
|
||||||
|
Title="SettingsPage">
|
||||||
|
<Border>
|
||||||
|
<VerticalStackLayout Padding="5">
|
||||||
|
<Picker x:Name="ThemePicker"
|
||||||
|
Title="Pick a Theme"
|
||||||
|
SelectedIndexChanged="SelectedThemeChanged"
|
||||||
|
ItemsSource="{Binding Themes}"/>
|
||||||
|
</VerticalStackLayout>
|
||||||
|
</Border>
|
||||||
|
</ContentPage>
|
22
Tasks/Lab12/TodoDetails/View/SettingsPage.xaml.cs
Normal file
22
Tasks/Lab12/TodoDetails/View/SettingsPage.xaml.cs
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
using TodoDetails.ViewModel;
|
||||||
|
|
||||||
|
namespace TodoDetails.View;
|
||||||
|
|
||||||
|
public partial class SettingsPage : ContentPage
|
||||||
|
{
|
||||||
|
public SettingsPage(SettingsViewModel viewModel)
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
BindingContext = viewModel;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void SelectedThemeChanged(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
var selectedItem = (string)ThemePicker.SelectedItem;
|
||||||
|
|
||||||
|
if (selectedItem != null)
|
||||||
|
{
|
||||||
|
(BindingContext as SettingsViewModel)?.LoadNewTheme(selectedItem);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
46
Tasks/Lab12/TodoDetails/ViewModel/SettingsViewModel.cs
Normal file
46
Tasks/Lab12/TodoDetails/ViewModel/SettingsViewModel.cs
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using TodoDetails.Resources.Styles;
|
||||||
|
using TodoDetails.Resources.Themes;
|
||||||
|
|
||||||
|
namespace TodoDetails.ViewModel
|
||||||
|
{
|
||||||
|
public class SettingsViewModel
|
||||||
|
{
|
||||||
|
private Dictionary<string, ResourceDictionary> defaultThemes = new()
|
||||||
|
{
|
||||||
|
{ "Light", new Light() },
|
||||||
|
{ "Dark", new Dark() },
|
||||||
|
{ "Earth", new Earth() },
|
||||||
|
{ "Pink", new Pink() }
|
||||||
|
};
|
||||||
|
|
||||||
|
public SettingsViewModel()
|
||||||
|
{
|
||||||
|
Themes = defaultThemes.Select(x => x.Key).ToList();
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<string> Themes { get; set; }
|
||||||
|
|
||||||
|
public void LoadNewTheme(string themeName)
|
||||||
|
{
|
||||||
|
if (!MainThread.IsMainThread)
|
||||||
|
{
|
||||||
|
MainThread.BeginInvokeOnMainThread(() => LoadNewTheme(themeName));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
ResourceDictionary dictionary = defaultThemes[themeName];
|
||||||
|
|
||||||
|
if (dictionary != null)
|
||||||
|
{
|
||||||
|
Application.Current.Resources.MergedDictionaries.Clear();
|
||||||
|
Application.Current.Resources.MergedDictionaries.Add(new ThemeStyles());
|
||||||
|
Application.Current.Resources.MergedDictionaries.Add(dictionary);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue