Files
LanMountainDesktop/LanMountainDesktop/Views/ComponentEditors/NotificationBoxComponentEditor.axaml.cs
2026-04-07 00:49:33 +08:00

16 lines
457 B
C#

using Avalonia.Controls;
using LanMountainDesktop.ComponentSystem;
using LanMountainDesktop.ViewModels;
namespace LanMountainDesktop.Views.ComponentEditors;
public partial class NotificationBoxComponentEditor : ComponentEditorViewBase
{
public NotificationBoxComponentEditor(DesktopComponentEditorContext? context)
: base(context)
{
InitializeComponent();
DataContext = new NotificationBoxEditorViewModel(context);
}
}