コード例 #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);
        }
コード例 #2
0
 public void AddButton(string title, SIAlertViewButtonType type)
 {
     AddButton(title, type, null);
 }
コード例 #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);
 }
コード例 #4
0
 public SIAlertItem(string title, SIAlertViewButtonType type, NSAction action)
 {
     Title  = title;
     Type   = type;
     Action = action;
 }
コード例 #5
0
 public SIAlertItem(string title, SIAlertViewButtonType type, NSAction action)
 {
     Title = title;
     Type = type;
     Action = action;
 }
コード例 #6
0
 public void AddButton(string title, SIAlertViewButtonType type)
 {
     AddButton(title, type, null);
 }