コード例 #1
0
 private void OnConfirmDialogComplete(CommandSelected command, string buttontext, int id)
 {
     if (ConfirmDialogComplete != null)
     {
         ConfirmDialogComplete.Invoke(null, new ConfirmDialogResult(command, buttontext, id));
     }
 }
コード例 #2
0
ファイル: DialogResult.cs プロジェクト: salvadormx/FormsX
 public SimpleListDialogResult(CommandSelected command, string textbutton, int id, string elementselected)
 {
     CommandSelected    = command;
     ButtonTextSelected = textbutton;
     ItemSelected       = elementselected;
     IdDialog           = id;
 }
コード例 #3
0
ファイル: DialogResult.cs プロジェクト: salvadormx/FormsX
 public SliderDialogResult(CommandSelected command, string textbutton, int id, int value)
 {
     CommandSelected    = command;
     ButtonTextSelected = textbutton;
     IdDialog           = id;
     Value = value;
 }
コード例 #4
0
ファイル: DialogResult.cs プロジェクト: salvadormx/FormsX
 public ConfirmDialogResult(CommandSelected command, string textbutton, int id)
 {
     CommandSelected    = command;
     ButtonTextSelected = textbutton;
     IdDialog           = id;
 }