2016-12-31 4 views
0

다음과 같은 클래스/비헤이비어가 버튼 클릭 이벤트에서 호출됩니다. 문제는 button_click 이벤트 후에 호출된다는 것입니다. 버튼 클릭 이벤트 전에 어떻게 호출합니까? 아래 언급 한 스타일은 사용 내역에 대한 App.xaml에 정의되어버튼 클릭 후 WPF에 연결된 동작 트리거

XAML :

<Style TargetType="Button"> 
     <Setter Property="local:DefaultButtonBehaviour.DefaultButton" Value="True" /> 
</Style> 

CODE :

public static class DefaultButtonBehaviour 
{ 
    /// 1. This is the boolean attached property with its getter and setter: 
    public static readonly DependencyProperty DefaultButtonProperty = 
     DependencyProperty.RegisterAttached 
     (
      "DefaultButton", 
      typeof(bool), 
      typeof(DefaultButtonBehaviour), 
      new UIPropertyMetadata(false, OnDefaultButtonPropertyChanged) 
     ); 
    public static bool GetDefaultButton(DependencyObject obj) 
    { 
     return (bool)obj.GetValue(DefaultButtonProperty); 
    } 
    private static void SetDefaultButton(DependencyObject obj, bool value) 
    { 
     obj.SetValue(DefaultButtonProperty, value); 
    } 

    /// 2. This is the change event of our attached property value: 
    ///  * We get in the first parameter the dependency object to which the attached behavior was attached 
    ///  * We get in the second parameter the value of the attached behavior. 
    ///  * The implementation of the behavior is to check if we are attached to a textBox, and if so and the value of the behavior 
    ///  is true, hook to the PreviewGotKeyboardFocus of the textbox. 
    private static void OnDefaultButtonPropertyChanged(DependencyObject dpo, DependencyPropertyChangedEventArgs args) 
    { 
     ButtonBase button = dpo as ButtonBase; 
     if (button != null) 
     { 
      if ((bool)args.NewValue) 
      { 
       button.Click += OnDefaultButtonClick; 
      } 
      else 
      { 
       button.Click -= OnDefaultButtonClick; ; 
      } 
     } 
    } 

    private static void OnDefaultButtonClick(object sender, RoutedEventArgs e) 
    { 
     ButtonBase btn = (ButtonBase)sender; 
     DependencyObject focusScope = FocusManager.GetFocusScope(btn); 
     FocusManager.SetFocusedElement(focusScope, btn); 
     Keyboard.Focus(btn); 
    } 

} 
+0

'이전'과 '이후'를 어떻게 구별합니까? 클릭 이벤트이고 이벤트가 발생하면 모든 핸들러가 호출됩니다. 이벤트가 발생하기 전에 크리스탈 볼을 호출해야합니다. 너의 질문을 아마 얻지 못할거야 –

+0

고마워. 화면 중 하나에서 버튼 클릭 이벤트가 발생했습니다. 버튼 클릭이 먼저 시작되면이 동작이 호출됩니다. 나는 다른 방향으로 그것을 원한다. – Alice

+0

죄송 합니다만, 아직 팔로우 중이 아닙니다. 클릭에 어떤 행동도 취하지 않는다고 할 때, 귀하의 사례에서 클릭이 어떻게됩니까? –

답변

0

내가 제대로 질문을 다음하고 있다면, 당신은 할 수 Preview 이벤트를 연결하여이 문제에 접근하십시오. 후크를 PreviewMouseDownPreviewKeyDown (사용자가 버튼을 활성화하기 위해 리턴 키를 사용하는 경우를 처리 할 수 ​​있도록).

+0

PreviewKeyDown의 문제점은 모든 키 스트로크에 대해 트리거가 발생하므로 피하려고합니다. – Alice

+0

@skers - 특정 키를 찾아야 만 어떤 키를 눌렀는지 확인할 수 있고 키인 경우 확인할 수 있습니다 당신은 그것을 필요로하고, 그것을 다뤄야합니다. – pstrjds

+0

@skers - 또한 다른 컨트롤에 포커스가있는 경우가 아니라 포커스가있는 경우에만 훅이 키 입력을 트리거합니다. 또한 클릭 이벤트가 발생하기 전에 이벤트를 처리하는 다른 방법에 대해서는 알지 못합니다. 미리보기 이벤트를 처리하거나 마우스를 클릭하거나 클릭하기 전에 발생하는 다른 이벤트를 처리하지 않아도됩니다. 그 (것)들에 대한 문제는 당신은 클릭이 일어날 지 모른다, 그러나 mousedown와 keydown로 당신은 클릭이 일어나고 있다고 확신 할 수있다. – pstrjds