35 lines
1.0 KiB
C#
35 lines
1.0 KiB
C#
using System;
|
|
using Avalonia;
|
|
using Avalonia.Controls;
|
|
using Avalonia.Controls.Notifications;
|
|
using Avalonia.Controls.Presenters;
|
|
using Avalonia.Interactivity;
|
|
using Avalonia.Markup.Xaml;
|
|
using Avalonia.VisualTree;
|
|
using Semi.Avalonia.Demo.Views;
|
|
|
|
namespace Semi.Avalonia.Demo.Pages;
|
|
|
|
public partial class NotificationDemo : UserControl
|
|
{
|
|
private WindowNotificationManager? _manager;
|
|
public NotificationDemo()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
protected override void OnAttachedToVisualTree(VisualTreeAttachmentEventArgs e)
|
|
{
|
|
base.OnAttachedToVisualTree(e);
|
|
var topLevel = TopLevel.GetTopLevel(this);
|
|
_manager = new WindowNotificationManager(topLevel){ MaxItems = 3};
|
|
}
|
|
|
|
private void InfoButton_OnClick(object? sender, RoutedEventArgs e)
|
|
{
|
|
if (sender is Button b && b.Content is string s && Enum.TryParse<NotificationType>(s, out NotificationType t))
|
|
{
|
|
_manager?.Show(new Notification(t.ToString(), "This is message", t));
|
|
}
|
|
}
|
|
} |