mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 02:36:19 +02:00
17 lines
524 B
C#
17 lines
524 B
C#
|
|
using System.Drawing;
|
|||
|
|
using System.Windows.Input;
|
|||
|
|
using Wox.Plugin;
|
|||
|
|
|
|||
|
|
namespace Wox.ViewModel
|
|||
|
|
{
|
|||
|
|
public class ContextMenuItemViewModel : BaseModel
|
|||
|
|
{
|
|||
|
|
public string Title { get; set; }
|
|||
|
|
public string Glyph { get; set; }
|
|||
|
|
public string FontFamily { get; set; }
|
|||
|
|
public ICommand Command { get; set; }
|
|||
|
|
public string AcceleratorKey { get; set; }
|
|||
|
|
public string AcceleratorModifiers { get; set; }
|
|||
|
|
public bool IsAcceleratorKeyEnabled { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|