📄 chateditlinkobject.cs
字号:
namespace Imps.Client.Pc.BizControls
{
using Imps.Client.Resource;
using System;
using System.Collections.Generic;
using System.Windows.Forms;
public class ChatEditLinkObject
{
private string _command;
private Dictionary<string, string> _commandDictory;
private int _hotKey;
private string _hotKeyText;
private OleKey _key;
private int _pos;
private string _text;
public ChatEditLinkObject(int iPos, OleKey key, string Text, string sCommand, Keys hotKey, Dictionary<string, string> command, string hotKeyText)
{
this._pos = iPos;
this._text = Text;
this._command = sCommand;
this._hotKey = (int) hotKey;
this._key = key;
this._hotKeyText = hotKeyText;
this._commandDictory = command;
}
public string Command
{
get
{
return this._command;
}
}
public int HotKey
{
get
{
return this._hotKey;
}
}
public string HotKeyText
{
get
{
return this._hotKeyText;
}
}
public OleKey key
{
get
{
return this._key;
}
}
public string OnClick
{
get
{
if (this._commandDictory != null)
{
return this._commandDictory.get_Item(StringTable.ChatEditManager.OnClick);
}
return string.Empty;
}
}
public int Pos
{
get
{
return this._pos;
}
internal set
{
this._pos = value;
}
}
public string Text
{
get
{
return this._text;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -