| 12345678910111213141516171819202122232425262728293031323334353637 | 
							- using Avalonia;
 
- using Avalonia.Controls;
 
- using Avalonia.Markup.Xaml;
 
- using Avalonia.Styling;
 
- namespace ControlCatalog.Pages
 
- {
 
-     public class ThemePage : UserControl
 
-     {
 
-         public static ThemeVariant Pink { get; } = new("Pink", ThemeVariant.Light);
 
-         
 
-         public ThemePage()
 
-         {
 
-             AvaloniaXamlLoader.Load(this);
 
-             var selector = this.FindControl<ComboBox>("Selector")!;
 
-             var themeVariantScope = this.FindControl<ThemeVariantScope>("ThemeVariantScope")!;
 
-             selector.Items = new[]
 
-             {
 
-                 ThemeVariant.Default,
 
-                 ThemeVariant.Dark,
 
-                 ThemeVariant.Light,
 
-                 Pink
 
-             };
 
-             selector.SelectedIndex = 0;
 
-             selector.SelectionChanged += (_, _) =>
 
-             {
 
-                 if (selector.SelectedItem is ThemeVariant theme)
 
-                 {
 
-                     themeVariantScope.RequestedThemeVariant = theme;
 
-                 }
 
-             };
 
-         }
 
-     }
 
- }
 
 
  |