2024-01-08 13:13:35 +08:00
|
|
|
|
using System.ComponentModel;
|
2024-01-08 16:44:05 +08:00
|
|
|
|
using Framework;
|
2024-01-08 13:13:35 +08:00
|
|
|
|
|
|
|
|
|
|
[Category("DisplayID")]
|
|
|
|
|
|
public partial class SROptions
|
|
|
|
|
|
{
|
|
|
|
|
|
public bool IsDisplayId
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
get { return _isDisplayId; }
|
|
|
|
|
|
|
|
|
|
|
|
set
|
|
|
|
|
|
{
|
|
|
|
|
|
_isDisplayId = value;
|
|
|
|
|
|
DisplayIDForCeHua.IsDisplayID = value;
|
2024-01-08 16:44:05 +08:00
|
|
|
|
EventManager.Instance.Send(EventManager.EventName.DebugHeadRoleID);
|
2024-01-08 13:13:35 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private bool _isDisplayId = false;
|
|
|
|
|
|
}
|