Exemplo n.º 1
0
 public bool Alert(string tmsg)
 {
     return(RxAlertWindow.Open(this, null, RxAlertWindow.TypeAlert, tmsg));
 }
Exemplo n.º 2
0
 public bool Confirm(string tmsg)
 {
     return(RxAlertWindow.Open(this, null, RxAlertWindow.TypeConfirm, tmsg));
 }
Exemplo n.º 3
0
 public bool Confirm(string tmsg, double tw, double th)
 {
     return(RxAlertWindow.Open(this, null, RxAlertWindow.TypeConfirm, tmsg, tw, th));
 }
Exemplo n.º 4
0
 public bool Alert(string tmsg, double tw, double th)
 {
     return(RxAlertWindow.Open(this, null, RxAlertWindow.TypeAlert, tmsg, tw, th));
 }