public void Choose(string caption, System.Collections.Generic.KeyValuePair <object, string>[] items, int index, BitMobile.Controls.DialogButton <object> positive, BitMobile.Controls.DialogButton <object> negative) { ShowSelectionDialog(caption, items, index, positive, negative); }
public void Time(string caption, DateTime current, BitMobile.Controls.DialogButton <DateTime> positive, BitMobile.Controls.DialogButton <DateTime> negative) { ShowDateTimeDialog(caption, UIDatePickerMode.Time, current, positive, negative); }
public void Message(string message, BitMobile.Controls.DialogButton <object> ok) { ShowDialog(message, ok); }
public void Ask(string message, BitMobile.Controls.DialogButton <object> positive, BitMobile.Controls.DialogButton <object> negative) { ShowDialog(message, positive, negative); }
public void Alert(string message, BitMobile.Controls.DialogButton <int> positive, BitMobile.Controls.DialogButton <int> negative, BitMobile.Controls.DialogButton <int> neutral) { ShowDialog(message, positive, negative, neutral); }