Пример #1
0
 public UIEvent(string type = "", UIEventInit dictUIEventInit = null)
     : base(type, dictUIEventInit)
 {
     if (dictUIEventInit == null)
         dictUIEventInit = new UIEventInit();
         view = dictUIEventInit.view;
         detail = dictUIEventInit.detail;
 }
Пример #2
0
 public UIEvent(string type = "", UIEventInit dictUIEventInit = null)
     : base(type, dictUIEventInit)
 {
     if (dictUIEventInit == null)
     {
         dictUIEventInit = new UIEventInit();
     }
     view   = dictUIEventInit.view;
     detail = dictUIEventInit.detail;
 }
Пример #3
0
 public UIEvent(string type, UIEventInit eventInit)
 {
 }
Пример #4
0
 public UIEvent(EventName type, UIEventInit eventInit = null) : base(type, eventInit)
 {
     this.View   = eventInit.view;
     this.Detail = eventInit.detail;
 }
Пример #5
0
 public UIEvent(string type, UIEventInit eventInit)
 {
 }