public void OpenDialog1Button(string text, ButtonEventInfo button1) { this.OpenDialog1Button(text, button1.text, button1.callBackClicked); }
/// 2ボタンのダイアログを開く public void OpenDialog2Button(string text, ButtonEventInfo button1, ButtonEventInfo button2) { OpenDialog2Button(text, button1.text, button2.text, button1.callBackClicked, button2.callBackClicked); }
public void OpenDialog3Button(string text, ButtonEventInfo button1, ButtonEventInfo button2, ButtonEventInfo button3) { this.OpenDialog3Button(text, button1.text, button2.text, button3.text, button1.callBackClicked, button2.callBackClicked, button3.callBackClicked); }