コード例 #1
0
 /* 重置信息 */
 public void Reset()
 {
     parentNode     = null;
     SubNotifyCount = 0;
     ChangeNotify(false);
     _OnChange = null;
 }
コード例 #2
0
        public void SetData(NotifyMark notify)
        {
            if (notify == null)
            {
                SetRedPoint(false);
                return;
            }

            Notify           = notify;
            Notify.OnChange += SetRedPoint;
        }
コード例 #3
0
 /* 设置父节点 */
 public void SetParentNotify(NotifyMark notify)
 {
     parentNode = notify;
 }