changed the sequence of OnGotFocus's declaration

This commit is contained in:
MSFT-Tilia 2021-02-01 18:40:58 +08:00
commit eda72060a2

View file

@ -67,8 +67,8 @@ namespace CalculatorApp
Platform::String ^ GetMathTextProperty(); Platform::String ^ GetMathTextProperty();
void SetMathTextProperty(Platform::String ^ newValue); 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 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); void OnKeyUp(Platform::Object ^ sender, Windows::UI::Xaml::Input::KeyRoutedEventArgs ^ e);
}; };
} }