You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Right now, when a TextBox loses focus, it clears the selection. This prevents external controls, like toolbar buttons, from obtaining the TextBox selection and interacting with it since it is now gone. Further, when re-Tabbing back into the control, the selection is not restored.
Describe the solution you'd like
Instead of clearing the selection, the TextBox should simply not render the selected text differently (as "selected") when focus is outside of the control. This allows external controls to access the selection, and keeps things visually the same as before. And then when focus moves back into the control, the selection is restored and redisplayed unless otherwise programmatically altered.
One thing to be careful of is when the TextBox's context menu/flyout is open, you still want to render the selected text as "selected".
Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Right now, when a TextBox loses focus, it clears the selection. This prevents external controls, like toolbar buttons, from obtaining the TextBox selection and interacting with it since it is now gone. Further, when re-Tabbing back into the control, the selection is not restored.
Describe the solution you'd like
Instead of clearing the selection, the TextBox should simply not render the selected text differently (as "selected") when focus is outside of the control. This allows external controls to access the selection, and keeps things visually the same as before. And then when focus moves back into the control, the selection is restored and redisplayed unless otherwise programmatically altered.
One thing to be careful of is when the TextBox's context menu/flyout is open, you still want to render the selected text as "selected".
Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: