41 lines
1.2 KiB
C#
Raw Normal View History

using System;
2023-02-10 00:34:48 +08:00
using Avalonia;
2023-01-20 23:08:33 +08:00
using Avalonia.Controls;
2023-02-10 00:34:48 +08:00
using Avalonia.Interactivity;
using Avalonia.Styling;
2023-01-20 23:08:33 +08:00
namespace Semi.Avalonia.Demo.Views;
public partial class MainView : UserControl
{
public MainView()
{
InitializeComponent();
}
2023-02-10 00:34:48 +08:00
private void ToggleButton_OnIsCheckedChanged(object sender, RoutedEventArgs e)
{
var app = Application.Current;
if (app is not null)
{
var theme = app.ActualThemeVariant;
2023-02-10 00:49:07 +08:00
app.RequestedThemeVariant = theme == ThemeVariant.Dark ? ThemeVariant.Light : ThemeVariant.Dark;
2023-02-10 00:34:48 +08:00
}
}
private async void OpenRepository(object sender, RoutedEventArgs e)
{
var top = TopLevel.GetTopLevel(this);
if (top is null) return;
var launcher = top.Launcher;
await launcher.LaunchUriAsync(new Uri("https://github.com/irihitech/Semi.Avalonia"));
}
private async void OpenDocumentation(object sender, RoutedEventArgs e)
{
var top = TopLevel.GetTopLevel(this);
if (top is null) return;
var launcher = top.Launcher;
await launcher.LaunchUriAsync(new Uri("https://docs.irihi.tech/semi"));
}
2023-01-20 23:08:33 +08:00
}