22 lines
459 B
C#
22 lines
459 B
C#
using System.ComponentModel;
|
|
using Framework;
|
|
|
|
public partial class SROptions
|
|
{
|
|
[Category("通用"),DisplayName("图标上ID显示")]
|
|
public bool IsDisplayId
|
|
{
|
|
|
|
get { return _isDisplayId; }
|
|
|
|
set
|
|
{
|
|
_isDisplayId = value;
|
|
DisplayIDForCeHua.IsDisplayID = value;
|
|
EventManager.Instance.Send(EventManager.EventName.DebugHeadRoleID);
|
|
}
|
|
|
|
}
|
|
|
|
private bool _isDisplayId = false;
|
|
} |