Пример #1
0
 public bool Alert(string tmsg)
 {
     return(RxAlertWindow.Open(this, null, RxAlertWindow.TypeAlert, tmsg));
 }
Пример #2
0
 public bool Confirm(string tmsg)
 {
     return(RxAlertWindow.Open(this, null, RxAlertWindow.TypeConfirm, tmsg));
 }
Пример #3
0
 public bool Confirm(string tmsg, double tw, double th)
 {
     return(RxAlertWindow.Open(this, null, RxAlertWindow.TypeConfirm, tmsg, tw, th));
 }
Пример #4
0
 public bool Alert(string tmsg, double tw, double th)
 {
     return(RxAlertWindow.Open(this, null, RxAlertWindow.TypeAlert, tmsg, tw, th));
 }