Exemplo n.º 1
0
 public MaterialDialog(string message, string title, string positiveAction, string negativeAction, string auxiliaryAction, MaterialForm form)
 {
     Message         = message;
     Title           = title;
     PositiveAction  = positiveAction;
     NegativeAction  = negativeAction;
     AuxiliaryAction = auxiliaryAction;
     Form            = form;
     Theme           = DefaultDialogTheme;
 }
Exemplo n.º 2
0
 public MaterialDialog(string message, string title, string positiveAction, string negativeAction, MaterialForm form)
     : this(message, title, positiveAction, negativeAction, null, form)
 {
 }
Exemplo n.º 3
0
 public MaterialDialog(string message, string title, MaterialForm form)
     : this(message, title, "OK", "CANCEL", form)
 {
 }
Exemplo n.º 4
0
 public MaterialDialog(string message, MaterialForm form)
     : this(message, null, form)
 {
 }
Exemplo n.º 5
0
 public MaterialDialog(MaterialForm form)
     : this(null, form)
 {
 }
Exemplo n.º 6
0
 public CommandArgs(CommandSchema sender, Session session, MaterialForm commandForm)
 {
     Sender      = sender;
     Session     = session;
     CommandForm = commandForm;
 }