예제 #1
0
 void Buttons_ButtonEvent(UIButtonCollection group, UIButtonCollectionEventArgs args)
 {
     if (args.EventType == UIButtonEventType.Released)
     {
         UIActionSheetButton responseButton = args.Button as UIActionSheetButton;
         action = responseButton.Action;
         this.Hide();
     }
 }
예제 #2
0
 public virtual void AddButton(UIActionSheetButton button)
 {
     this.Buttons.Add(button);
 }