29 lines
652 B
C#
29 lines
652 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
using System.Text;
|
|
|
|
namespace Thousandto.Plugins.Common
|
|
{
|
|
/// <summary>
|
|
/// 按钮功能信息
|
|
/// </summary>
|
|
public interface IButtonFunctionInfo
|
|
{
|
|
//图标字符串
|
|
string Icon { get;}
|
|
//显示文字
|
|
string Text { get;}
|
|
//序列号
|
|
int SortNum { get; }
|
|
//是否显示
|
|
bool IsVisible { get; }
|
|
//是否显示红色点点
|
|
bool IsShowRedPoint { get; }
|
|
//是否显示特效
|
|
bool IsEffectShow { get; }
|
|
//点击按钮后的回调
|
|
void OnClickHandler(object param);
|
|
}
|
|
}
|