📄 emoticoneventargs.cs
字号:
namespace Imps.Client.Pc.BizControls
{
using Imps.Client.Core.CustomEmotion;
using Imps.Client.Resource;
using System;
public class EmoticonEventArgs : EventArgs
{
private bool bIsCustomEmoticon;
private Imps.Client.Core.CustomEmotion.CustomEmotion customEmoticon;
private Imps.Client.Resource.Emoticon emoticon;
public Imps.Client.Core.CustomEmotion.CustomEmotion CustomEmotion
{
get
{
return this.customEmoticon;
}
set
{
this.customEmoticon = value;
}
}
public Imps.Client.Resource.Emoticon Emoticon
{
get
{
return this.emoticon;
}
set
{
this.emoticon = value;
}
}
public bool IsCustomEmoticon
{
get
{
return this.bIsCustomEmoticon;
}
set
{
this.bIsCustomEmoticon = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -