mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-21 16:14:28 +08:00
16 lines
457 B
C#
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);
|
|
}
|
|
}
|