Ejemplo n.º 1
0
        public void AddButton(string title, SIAlertViewButtonType type, NSAction handler)
        {
            SIAlertItem item = new SIAlertItem();

            item.Title  = title;
            item.Type   = type;
            item.Action = handler;
            _Items.Add(item);
        }
Ejemplo n.º 2
0
 public void AddButton(string title, SIAlertViewButtonType type)
 {
     AddButton(title, type, null);
 }
Ejemplo n.º 3
0
 public void AddButton(string title, SIAlertViewButtonType type, Action handler)
 {
     SIAlertItem item = new SIAlertItem();
     item.Title = title;
     item.Type = type;
     item.Action = handler;
     _Items.Add(item);
 }
Ejemplo n.º 4
0
 public SIAlertItem(string title, SIAlertViewButtonType type, NSAction action)
 {
     Title  = title;
     Type   = type;
     Action = action;
 }
 public SIAlertItem(string title, SIAlertViewButtonType type, NSAction action)
 {
     Title = title;
     Type = type;
     Action = action;
 }
Ejemplo n.º 6
0
 public void AddButton(string title, SIAlertViewButtonType type)
 {
     AddButton(title, type, null);
 }