2 instantiations of FocusEventArgs
Microsoft.Maui.Controls (2)
VisualElement\VisualElement.cs (2)
1549
void OnFocused() => Focused?.Invoke(this, new
FocusEventArgs
(this, true));
1720
void OnUnfocus() => Unfocused?.Invoke(this, new
FocusEventArgs
(this, false));
2 references to FocusEventArgs
Microsoft.Maui.Controls (2)
VisualElement\VisualElement.cs (2)
1123
public event EventHandler<
FocusEventArgs
> Focused;
1251
public event EventHandler<
FocusEventArgs
> Unfocused;