pascalabcnet/Utils/NodesGeneratorNew/Scintilla/Sources/ScintillaNET/Configuration/CommandBindingConfig.cs

36 lines
792 B
C#
Raw Permalink Normal View History

2015-05-14 22:35:07 +03:00
#region Using Directives
using System;
#endregion Using Directives
namespace ScintillaNET.Configuration
{
public struct CommandBindingConfig
{
#region Fields
public KeyBinding KeyBinding;
public bool? ReplaceCurrent;
public BindableCommand BindableCommand;
#endregion Fields
#region Constructors
/// <summary>
/// Initializes a new instance of the CommandBindingConfig structure.
/// </summary>
public CommandBindingConfig(KeyBinding keyBinding, bool? replaceCurrent, BindableCommand bindableCommand)
{
KeyBinding = keyBinding;
ReplaceCurrent = replaceCurrent;
BindableCommand = bindableCommand;
}
#endregion Constructors
}
}