public void SetAndShow(string message, Hooks.VoidFunc yes, Hooks.VoidFunc no) { this.Message = message; this.Yes = yes; this.No = no; this.Show(); }
public ShowResult SetAndShow(string message, Hooks.VoidFunc yes, Hooks.VoidFunc no) { this.Set(message, yes, no); return(Show()); }
public void Set(string message, Hooks.VoidFunc yes, Hooks.VoidFunc no) { this.message = message; this.yes = yes; this.no = no; }