다음과 같은 클래스/비헤이비어가 버튼 클릭 이벤트에서 호출됩니다. 문제는 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);
}
}
'이전'과 '이후'를 어떻게 구별합니까? 클릭 이벤트이고 이벤트가 발생하면 모든 핸들러가 호출됩니다. 이벤트가 발생하기 전에 크리스탈 볼을 호출해야합니다. 너의 질문을 아마 얻지 못할거야 –
고마워. 화면 중 하나에서 버튼 클릭 이벤트가 발생했습니다. 버튼 클릭이 먼저 시작되면이 동작이 호출됩니다. 나는 다른 방향으로 그것을 원한다. – Alice
죄송 합니다만, 아직 팔로우 중이 아닙니다. 클릭에 어떤 행동도 취하지 않는다고 할 때, 귀하의 사례에서 클릭이 어떻게됩니까? –