Exemplo n.º 1
0
 public ActionButton(MessageAction action)
     : base(action.Label)
 {
     this.action = action;
 }
Exemplo n.º 2
0
 public void AddAction(MessageAction action)
 {
     lock (this) {
         actions.Add (action);
         OnUpdated ();
     }
 }