csharpc-sharpdotnetxamlavaloniauicross-platformcross-platform-xamlavaloniaguimulti-platformuser-interfacedotnetcore
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
116 lines
4.7 KiB
116 lines
4.7 KiB
using System;
|
|
using System.Threading.Tasks;
|
|
using Avalonia;
|
|
using Avalonia.Controls;
|
|
using Avalonia.Media;
|
|
using Avalonia.Media.Immutable;
|
|
using Avalonia.Styling;
|
|
using ControlCatalog.Models;
|
|
using ControlCatalog.ViewModels;
|
|
|
|
namespace ControlCatalog
|
|
{
|
|
public partial class MainView : UserControl
|
|
{
|
|
private Action? _disposeTransparencySetters;
|
|
|
|
public MainView()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void Themes_SelectionChanged(object? sender, SelectionChangedEventArgs e)
|
|
{
|
|
if (e.AddedItems.Count > 0 && e.AddedItems[0] is CatalogTheme theme)
|
|
{
|
|
App.SetCatalogThemes(theme);
|
|
}
|
|
}
|
|
|
|
private void ThemeVariants_SelectionChanged(object? sender, SelectionChangedEventArgs e)
|
|
{
|
|
if (Application.Current is { } app && e.AddedItems.Count > 0 && e.AddedItems[0] is ThemeVariant themeVariant)
|
|
{
|
|
app.RequestedThemeVariant = themeVariant;
|
|
}
|
|
}
|
|
|
|
private void FlowDirection_SelectionChanged(object? sender, SelectionChangedEventArgs e)
|
|
{
|
|
if (TopLevel.GetTopLevel(this) is { } topLevel && e.AddedItems.Count > 0 && e.AddedItems[0] is FlowDirection flowDirection)
|
|
{
|
|
topLevel.FlowDirection = flowDirection;
|
|
}
|
|
}
|
|
|
|
private void Decorations_SelectionChanged(object? sender, SelectionChangedEventArgs e)
|
|
{
|
|
if (VisualRoot is Window window && e.AddedItems.Count > 0 && e.AddedItems[0] is SystemDecorations systemDecorations)
|
|
{
|
|
window.SystemDecorations = systemDecorations;
|
|
}
|
|
}
|
|
|
|
private void TransparencyLevels_SelectionChanged(object? sender, SelectionChangedEventArgs e)
|
|
{
|
|
_disposeTransparencySetters?.Invoke();
|
|
|
|
if (TopLevel.GetTopLevel(this) is { } topLevel && e.AddedItems.Count > 0 && e.AddedItems[0] is WindowTransparencyLevel transparencyLevel)
|
|
{
|
|
topLevel.TransparencyLevelHint = [transparencyLevel];
|
|
|
|
if (topLevel.ActualTransparencyLevel != WindowTransparencyLevel.None &&
|
|
topLevel.ActualTransparencyLevel == transparencyLevel)
|
|
{
|
|
var transparentBrush = new ImmutableSolidColorBrush(Colors.White, 0);
|
|
var semiTransparentBrush = new ImmutableSolidColorBrush(Colors.Gray, 0.2);
|
|
_disposeTransparencySetters =
|
|
(Action)topLevel.SetValue(BackgroundProperty, transparentBrush, Avalonia.Data.BindingPriority.Style)!.Dispose +
|
|
Sidebar.SetValue(BackgroundProperty, semiTransparentBrush, Avalonia.Data.BindingPriority.Style)!.Dispose +
|
|
Sidebar.SetValue(SplitView.PaneBackgroundProperty, semiTransparentBrush, Avalonia.Data.BindingPriority.Style)!.Dispose;
|
|
}
|
|
}
|
|
}
|
|
|
|
internal MainWindowViewModel ViewModel => (MainWindowViewModel)DataContext!;
|
|
|
|
protected override void OnAttachedToVisualTree(VisualTreeAttachmentEventArgs e)
|
|
{
|
|
base.OnAttachedToVisualTree(e);
|
|
|
|
if (VisualRoot is Window window)
|
|
Decorations.SelectedIndex = (int)window.SystemDecorations;
|
|
|
|
var insets = TopLevel.GetTopLevel(this)!.InsetsManager;
|
|
if (insets != null)
|
|
{
|
|
// In real life application these events should be unsubscribed to avoid memory leaks.
|
|
ViewModel.SafeAreaPadding = insets.SafeAreaPadding;
|
|
insets.SafeAreaChanged += (sender, args) =>
|
|
{
|
|
ViewModel.SafeAreaPadding = insets.SafeAreaPadding;
|
|
};
|
|
|
|
ViewModel.DisplayEdgeToEdge = insets.DisplayEdgeToEdgePreference;
|
|
ViewModel.IsSystemBarVisible = insets.IsSystemBarVisible ?? true;
|
|
|
|
ViewModel.PropertyChanged += async (sender, args) =>
|
|
{
|
|
if (args.PropertyName == nameof(ViewModel.DisplayEdgeToEdge))
|
|
{
|
|
insets.DisplayEdgeToEdgePreference = ViewModel.DisplayEdgeToEdge;
|
|
}
|
|
else if (args.PropertyName == nameof(ViewModel.IsSystemBarVisible))
|
|
{
|
|
insets.IsSystemBarVisible = ViewModel.IsSystemBarVisible;
|
|
}
|
|
|
|
// Give the OS some time to apply new values and refresh the view model.
|
|
await Task.Delay(100);
|
|
ViewModel.DisplayEdgeToEdge = insets.DisplayEdgeToEdgePreference;
|
|
ViewModel.IsSystemBarVisible = insets.IsSystemBarVisible ?? true;
|
|
};
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|