📄 chatediteventargs.cs
字号:
namespace Imps.Client.Pc.BizControls
{
using System;
public class ChatEditEventArgs : EventArgs
{
private string _command;
private object _context;
private ChatEditEventType _eventType;
private OleKey _key;
private string _text;
public ChatEditEventArgs(OleKey key, string command, string text, ChatEditEventType eventType)
{
this._key = key;
this._command = command;
this._text = text;
this._eventType = eventType;
}
public string Command
{
get
{
return this._command;
}
}
public object Context
{
get
{
return this._context;
}
internal set
{
this._context = value;
}
}
public ChatEditEventType EventType
{
get
{
return this._eventType;
}
set
{
this._eventType = value;
}
}
public OleKey Key
{
get
{
return this._key;
}
set
{
this._key = value;
}
}
public string Text
{
get
{
return this._text;
}
set
{
this._text = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -