web-dev-qa-db-ja.com

WPF Button.IsCancelプロパティはどのように機能しますか?

[キャンセル]ボタンの基本的な考え方は、Escapeキーを押してウィンドウを閉じることを可能にすることです。

[キャンセル]ボタンのIsCancelプロパティをtrueに設定すると、[キャンセル]ボタンをクリックすると、Clickイベントを処理せずにダイアログが自動的に閉じます。

ソース:プログラミングWPF(グリフィス、販売)

これはうまくいくはずです

<Window>
<Button Name="btnCancel" IsCancel="True">_Close</Button>
</Window>

しかし、私が期待する振る舞いがうまくいきません。親ウィンドウは、Application.StartupUriプロパティで指定されたメインアプリケーションウィンドウです。うまくいくのは

<Button Name="btnCancel" IsCancel=True" Click="CloseWindow">_Close</Button>

private void CloseWindow(object sender, RoutedEventArgs) 
{
    this.Close();
}
  • IsCancelの動作は、ウィンドウが通常のウィンドウかダイアログかによって異なりますか? IsCancelは、ShowDialogが呼び出された場合にのみ、アドバタイズされたとおりに機能しますか?
  • Escapeプレスでウィンドウを閉じるには、ボタン(IsCancelをtrueに設定)に明示的なClickハンドラーが必要ですか?
32
Gishu

はい、通常のウィンドウには「キャンセル」の概念がないため、ダイアログでのみ機能します。これは、WinFormsのShowDialogから返されるDialogResult.Cancelと同じです。

エスケープでウィンドウを閉じたい場合は、ウィンドウのPreviewKeyDownにハンドラーを追加し、それがKey.Escapeであるかどうかをピックアップしてフォームを閉じます。

public MainWindow()
{
    InitializeComponent();

    this.PreviewKeyDown += new KeyEventHandler(CloseOnEscape);
}

private void CloseOnEscape(object sender, KeyEventArgs e)
{
    if (e.Key == Key.Escape)
        Close();
}
32
Steven Robbins

Steveの答えをさらに一歩進めて、任意のウィンドウに「閉じるときにエスケープ」機能を提供する添付プロパティを作成できます。プロパティを1回記述して、任意のウィンドウで使用します。以下をウィンドウXAMLに追加するだけです。

yournamespace:WindowService.EscapeClosesWindow="True"

プロパティのコードは次のとおりです。

using System.Windows;
using System.Windows.Input;

/// <summary>
/// Attached behavior that keeps the window on the screen
/// </summary>
public static class WindowService
{
   /// <summary>
   /// KeepOnScreen Attached Dependency Property
   /// </summary>
   public static readonly DependencyProperty EscapeClosesWindowProperty = DependencyProperty.RegisterAttached(
      "EscapeClosesWindow",
      typeof(bool),
      typeof(WindowService),
      new FrameworkPropertyMetadata(false, new PropertyChangedCallback(OnEscapeClosesWindowChanged)));

   /// <summary>
   /// Gets the EscapeClosesWindow property.  This dependency property 
   /// indicates whether or not the escape key closes the window.
   /// </summary>
   /// <param name="d"><see cref="DependencyObject"/> to get the property from</param>
   /// <returns>The value of the EscapeClosesWindow property</returns>
   public static bool GetEscapeClosesWindow(DependencyObject d)
   {
      return (bool)d.GetValue(EscapeClosesWindowProperty);
   }

   /// <summary>
   /// Sets the EscapeClosesWindow property.  This dependency property 
   /// indicates whether or not the escape key closes the window.
   /// </summary>
   /// <param name="d"><see cref="DependencyObject"/> to set the property on</param>
   /// <param name="value">value of the property</param>
   public static void SetEscapeClosesWindow(DependencyObject d, bool value)
   {
      d.SetValue(EscapeClosesWindowProperty, value);
   }

   /// <summary>
   /// Handles changes to the EscapeClosesWindow property.
   /// </summary>
   /// <param name="d"><see cref="DependencyObject"/> that fired the event</param>
   /// <param name="e">A <see cref="DependencyPropertyChangedEventArgs"/> that contains the event data.</param>
   private static void OnEscapeClosesWindowChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
   {
      Window target = (Window)d;
      if (target != null)
      {
         target.PreviewKeyDown += new System.Windows.Input.KeyEventHandler(Window_PreviewKeyDown);
      }
   }

   /// <summary>
   /// Handle the PreviewKeyDown event on the window
   /// </summary>
   /// <param name="sender">The source of the event.</param>
   /// <param name="e">A <see cref="KeyEventArgs"/> that contains the event data.</param>
   private static void Window_PreviewKeyDown(object sender, KeyEventArgs e)
   {
      Window target = (Window)sender;

      // If this is the escape key, close the window
      if (e.Key == Key.Escape)
         target.Close();
   }
}
17
John Myczek

これは完全に正しくはありません... MSDNによると、ボタンのIsCancelプロパティをtrueに設定すると、AccessKeyManagerに登録されるボタンが作成されます。ユーザーがEscキーを押すと、ボタンがアクティブになります。したがって、背後にあるコードにハンドラーが必要です。また、添付されたプロパティなどは必要ありません。

6
FastAndBulbous

はい、これは正しいです。Windowsアプリケーションには、WPFのAcceptButtonとCancel Buttonがあります。ただし、1つは、コントロールの可視性をfalseに設定すると、期待どおりに機能しないことです。そのためには、WPFで可視性をtrueにする必要があります。例:(ここでは表示がfalseであるため、[キャンセル]ボタンでは機能しません)

<Button x:Name="btnClose" Content="Close" IsCancel="True" Click="btnClose_Click" Visibility="Hidden"></Button> 

だから、あなたはそれを作る必要があります:

<Button x:Name="btnClose" Content="Close" IsCancel="True" Click="btnClose_Click"></Button>

次に、btnClose_Clickコードビハインドファイル:

private void btnClose_Click (object sender, RoutedEventArgs e)
    { this.Close(); }
2
Pitambar