示例#1
0
 public UiViewUpdatedEvent(IAcSession acSession, UiViewBase source, IUiViewUpdateIo input)
     : base(acSession, source)
 {
     if (input == null)
     {
         throw new System.ArgumentNullException("input");
     }
     this.Input = input;
 }
示例#2
0
 public UiViewUpdatedEvent(IAcSession acSession, UiViewBase source, IUiViewUpdateIo input)
     : base(acSession, source)
 {
     if (input == null)
     {
         throw new System.ArgumentNullException("input");
     }
     this.Input = input;
 }
示例#3
0
 internal UiViewUpdatedEvent(IAcSession acSession, UiViewBase source, IUiViewUpdateIo input, bool isPrivate)
     : this(acSession, source, input)
 {
     this.IsPrivate = isPrivate;
 }
示例#4
0
 public UiViewRemovingEvent(IAcSession acSession, UiViewBase source)
     : base(acSession, source)
 {
 }
示例#5
0
 internal UiViewRemovedEvent(IAcSession acSession, UiViewBase source, bool isPrivate)
     : this(acSession, source)
 {
     this.IsPrivate = isPrivate;
 }
示例#6
0
 public UiViewAddedEvent(IAcSession acSession, UiViewBase source, IUiViewCreateIo input)
     : base(acSession, source, input)
 {
 }
示例#7
0
 internal UiViewAddedEvent(IAcSession acSession, UiViewBase source, IUiViewCreateIo input, bool isPrivate)
     : this(acSession, source, input)
 {
     this.IsPrivate = isPrivate;
 }
示例#8
0
 public UiViewRemovingEvent(IAcSession acSession, UiViewBase source)
     : base(acSession, source)
 {
 }
示例#9
0
 internal UiViewRemovedEvent(IAcSession acSession, UiViewBase source, bool isPrivate)
     : this(acSession, source)
 {
     this.IsPrivate = isPrivate;
 }