diff --git a/demo/Semi.Avalonia.Demo/Pages/Overview.axaml b/demo/Semi.Avalonia.Demo/Pages/Overview.axaml
index a3684a3..0ad4538 100644
--- a/demo/Semi.Avalonia.Demo/Pages/Overview.axaml
+++ b/demo/Semi.Avalonia.Demo/Pages/Overview.axaml
@@ -2,233 +2,351 @@
x:Class="Semi.Avalonia.Demo.Pages.Overview"
xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
+ xmlns:converters="clr-namespace:Avalonia.Markup.Xaml.Converters;assembly=Avalonia.Markup.Xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
d:DesignHeight="1000"
- d:DesignWidth="800"
+ d:DesignWidth="1920"
mc:Ignorable="d">
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
+
+
+
+
+
+
-
-
-
-
-
-
-
- Option 1
- Option 2
-
-
+
+
- 选项 1
- 选项 2
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Avalonia
+ Semi Design
+ IRIHI Technology
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
- Option 1
- Description 1
-
-
-
-
- Option 2
- Description 2
-
-
-
-
-
-
- Option 1
- Description 1
-
-
-
-
- Option 2
- Description 2
-
-
-
-
-
-
- Avalonia
- WPF
- UWP
-
-
-
-
- Option 1
- Description 1
-
-
-
-
- Option 2
- Description 2
-
-
-
-
- Option 3
- Description 3
-
-
-
-
-
-
- Option 1
- Description 1
-
-
-
-
- Option 2
- Description 2
-
-
-
-
- Option 3
- Description 3
-
-
-
-
-
-
-
-
-
-
-
- Tab Content 1
-
-
- Tab Content 2
-
-
- Tab Content 3
-
-
-
-
- Item 1
- Item 2
- Item 3
-
-
-
-
-
-
-
- Card
-
-
- Shadow on hover
-
-
- Shadow
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- List Item 1
- List Item 2
- List Item 3
- List Item 4
- List Item 5
-
-
diff --git a/demo/Semi.Avalonia.Demo/Pages/Overview.axaml.cs b/demo/Semi.Avalonia.Demo/Pages/Overview.axaml.cs
index 887944e..160fb34 100644
--- a/demo/Semi.Avalonia.Demo/Pages/Overview.axaml.cs
+++ b/demo/Semi.Avalonia.Demo/Pages/Overview.axaml.cs
@@ -12,17 +12,4 @@ public partial class Overview : UserControl
{
InitializeComponent();
}
-
- private void ToggleButton_OnIsCheckedChanged(object sender, RoutedEventArgs e)
- {
- var variant = Application.Current!.RequestedThemeVariant;
- if (variant?.Key == "Dark")
- {
- Application.Current!.RequestedThemeVariant = ThemeVariant.Light;
- }
- else
- {
- Application.Current!.RequestedThemeVariant = ThemeVariant.Dark;
- }
- }
}
\ No newline at end of file