Esempio n. 1
0
 /* ----------------------------------------------------------------- */
 ///
 /// WhenDestinationRequested
 ///
 /// <summary>
 /// 保存パス要求時に実行されるハンドラです。
 /// </summary>
 ///
 /* ----------------------------------------------------------------- */
 private void WhenDestinationRequested(object s, PathQueryEventArgs e) =>
 ShowDialog(() => Views.ShowSaveView(e));
Esempio n. 2
0
 /* ----------------------------------------------------------------- */
 ///
 /// WhenRtSettingsRequested
 ///
 /// <summary>
 /// 詳細設定要求時に実行されるハンドラです。
 /// </summary>
 ///
 /* ----------------------------------------------------------------- */
 private void WhenRtSettingsRequested(object s,
                                      QueryEventArgs <string, ArchiveRtSettings> e) =>
 ShowDialog(() => Views.ShowArchiveRtSettingsView(e));
Esempio n. 3
0
 /* ----------------------------------------------------------------- */
 ///
 /// WhenPasswordRequested
 ///
 /// <summary>
 /// パスワード要求時に実行されるハンドラです。
 /// </summary>
 ///
 /* ----------------------------------------------------------------- */
 private void WhenPasswordRequested(object s, QueryEventArgs <string, string> e) =>
 ShowDialog(() => Views.ShowPasswordView(e, true));
Esempio n. 4
0
 /* ----------------------------------------------------------------- */
 ///
 /// WhenMailRequested
 ///
 /// <summary>
 /// メール画面表示要求時に実行されるハンドラです。
 /// </summary>
 ///
 /* ----------------------------------------------------------------- */
 private void WhenMailRequested(object s, ValueEventArgs <string> e) =>
 Views.ShowMailView(e);
 /* ----------------------------------------------------------------- */
 ///
 /// WhenOverwriteRequested
 ///
 /// <summary>
 /// 上書き確認時に実行されるハンドラです。
 /// </summary>
 ///
 /* ----------------------------------------------------------------- */
 private void WhenOverwriteRequested(object s, OverwriteEventArgs e) =>
 ShowDialog(() => Views.ShowOverwriteView(e));