Exemplo n.º 1
0
 public static bool ShowSelectDialog(this UIPage form, ref int selectIndex, IList items)
 {
     return(form.ShowSelectDialog(ref selectIndex, items, form.Style));
 }
Exemplo n.º 2
0
 public static bool ShowSelectDialog(this UIPage form, ref int selectIndex, IList items, string title, string description)
 {
     return(form.ShowSelectDialog(ref selectIndex, items, title, description, form != null ? form.Style : UIStyle.Blue, form != null && form.TopMost));
 }
Exemplo n.º 3
0
 public static bool ShowSelectDialog(this UIPage form, ref int selectIndex, IList items, string title, string description)
 {
     return(form.ShowSelectDialog(ref selectIndex, items, title, description, form.Style));
 }