コード例 #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));
 }