📄 customemotioneventargs.cs
字号:
namespace Imps.Client.Core
{
using Imps.Client.Core.CustomEmotion;
using System;
public class CustomEmotionEventArgs : EventArgs
{
private Imps.Client.Core.CustomEmotion.CustomEmotion _ce;
public CustomEmotionEventArgs(Imps.Client.Core.CustomEmotion.CustomEmotion ce)
{
this._ce = ce;
}
public Imps.Client.Core.CustomEmotion.CustomEmotion CustomEmotion
{
get
{
return this._ce;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -