I need event, that triggers when I focus on textBox. Or it can be Left mouse click event also. I just need to change the text when clicking on the textBox. Does anyone know how to do this?
Is there onFocused event in textBox WinUI3 .net?
92 Views Asked by Ростислав Романець At
2
There are 2 best solutions below
1

You need to access one of the elements that composes the TextBox
. This element has no name, and we can only know it as FrameworkElement
. To do this, I'm using the FindDescendants
extension method from the CommunityToolkit.WinUI.Extensions NuGet package.
private void TextBoxControl_Loaded(object sender, RoutedEventArgs e)
{
if ((sender as TextBox)?.FindDescendants()
.Where(x => x.GetType() == typeof(FrameworkElement))
.FirstOrDefault() is FrameworkElement element)
{
element.PointerPressed += Element_PointerPressed;
}
}
private void Element_PointerPressed(object sender, PointerRoutedEventArgs e)
{
if (e.Pointer.PointerDeviceType is PointerDeviceType.Mouse &&
e.GetCurrentPoint(this).Properties.IsLeftButtonPressed is true)
{
Debug.WriteLine("Mouse left button pressed.");
}
}
You can use the
GotFocus
event.Sample XAML:
Associated C# code: