示例#1
0
 public void SetAndShow(string message, Hooks.VoidFunc yes, Hooks.VoidFunc no)
 {
     this.Message = message;
     this.Yes     = yes;
     this.No      = no;
     this.Show();
 }
示例#2
0
 public ShowResult SetAndShow(string message, Hooks.VoidFunc yes, Hooks.VoidFunc no)
 {
     this.Set(message, yes, no);
     return(Show());
 }
示例#3
0
 public void Set(string message, Hooks.VoidFunc yes, Hooks.VoidFunc no)
 {
     this.message = message;
     this.yes     = yes;
     this.no      = no;
 }