コード例 #1
0
 private void OnFinished(PropertiesEditorFinishedEventArgs.SubmitResultKind Result)
 {
     EventHandler<PropertiesEditorFinishedEventArgs> handler = Finished;
     if (handler != null) handler(this, new PropertiesEditorFinishedEventArgs(Result));
 }
コード例 #2
0
ファイル: EditorDialog.xaml.cs プロジェクト: NpoSaut/LocoBase
 private void ViewModelOnFinished(object Sender, PropertiesEditorFinishedEventArgs FinishedEventArgs)
 {
     DialogResult = FinishedEventArgs.SubmitResult == PropertiesEditorFinishedEventArgs.SubmitResultKind.Submitted;
     Close();
 }