From eda72060a28d863e18da9f0e8558095acc1dbd9c Mon Sep 17 00:00:00 2001 From: MSFT-Tilia Date: Mon, 1 Feb 2021 18:40:58 +0800 Subject: [PATCH] changed the sequence of OnGotFocus's declaration --- src/Calculator/Controls/MathRichEditBox.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Calculator/Controls/MathRichEditBox.h b/src/Calculator/Controls/MathRichEditBox.h index 1b58e9a6..bfeb72db 100644 --- a/src/Calculator/Controls/MathRichEditBox.h +++ b/src/Calculator/Controls/MathRichEditBox.h @@ -67,8 +67,8 @@ namespace CalculatorApp Platform::String ^ GetMathTextProperty(); void SetMathTextProperty(Platform::String ^ newValue); - void OnLosingFocus(Windows::UI::Xaml::UIElement ^ sender, Windows::UI::Xaml::Input::LosingFocusEventArgs ^ args); void OnGotFocus(Platform::Object ^ sender, Windows::UI::Xaml::RoutedEventArgs ^ e); + void OnLosingFocus(Windows::UI::Xaml::UIElement ^ sender, Windows::UI::Xaml::Input::LosingFocusEventArgs ^ args); void OnKeyUp(Platform::Object ^ sender, Windows::UI::Xaml::Input::KeyRoutedEventArgs ^ e); }; }