-
I've been working on a performance-related PR for MAUI here: dotnet/maui#24355. The idea of the PR is simple: Do not subscribe The reason to make such a change is simple. These registrations here are costly. However, now an unexpected issue arrised. I store each platform view to a helper dictionary here and I expect that Am I doing something wrong or is it a result of WinRT or something? Could anybody explain it please? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The analysis is wrong. The 3rd commit of dotnet/maui#24695 shows that there were some missing code changes. And the answer to the question: Can seems to "Yes" (as expected). |
Beta Was this translation helpful? Give feedback.
The analysis is wrong. The 3rd commit of dotnet/maui#24695 shows that there were some missing code changes. And the answer to the question:
Can
FocusManager.{GotFocus|LostFocus}
work as a replacement ofUIElement.GotFocus
&UIElement.LostFocus
events?seems to "Yes" (as expected).