Beispiel #1
0
 public void NotifyMembers(IGroupControl sender, GroupNotificationArgs e)
 {
     if (Owner != null && NotifyMembersAction != null)
     {
         NotifyMembersAction(this, new GroupNotificationArgs()
         {
             State = this.State, Data = this.Data
         });
     }
 }
 void item_NotifyMembersAction(IGroupControl sender, GroupNotificationArgs e)
 {
     foreach (var item in Items)
     {
         if (item != sender)
         {
             item.Notified(sender, e);
         }
     }
 }
Beispiel #3
0
 public override void Notified(IGroupControl sender, GroupNotificationArgs e)
 {
     State = false;
 }
Beispiel #4
0
 public virtual void Notified(IGroupControl sender, GroupNotificationArgs e)
 {
 }