mirror of
https://github.com/Leonmmcoset/CMLeonOS.git
synced 2026-03-03 15:30:27 +00:00
GUI桌面环境
This commit is contained in:
17
Gui/UILib/ShortcutBarCell.cs
Normal file
17
Gui/UILib/ShortcutBarCell.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
|
||||
namespace CMLeonOS.Gui.UILib
|
||||
{
|
||||
internal class ShortcutBarCell
|
||||
{
|
||||
internal ShortcutBarCell(string text, Action onClick)
|
||||
{
|
||||
Text = text;
|
||||
OnClick = onClick;
|
||||
}
|
||||
|
||||
internal string Text { get; set; } = string.Empty;
|
||||
|
||||
internal Action OnClick { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user