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 ComboBox/ItemsControl search feature uses Content?.ToString() to find items.
To make it flexible we need TextSearch.Text property, like it exists in WPF.
Describe alternatives you've considered
WPF also has "TextSearch.TextPath" property, but we want to avoid reflection-based features as much as possible, unless it's possible to easily implement it in compile-time way. Also having "TextSearch.Text" more than enough to have text search flexible.
Is your feature request related to a problem? Please describe.
Right now ComboBox/ItemsControl search feature uses Content?.ToString() to find items.
To make it flexible we need TextSearch.Text property, like it exists in WPF.
Describe the solution you'd like
Describe alternatives you've considered
WPF also has "TextSearch.TextPath" property, but we want to avoid reflection-based features as much as possible, unless it's possible to easily implement it in compile-time way. Also having "TextSearch.Text" more than enough to have text search flexible.
Additional context
https://docs.microsoft.com/en-us/dotnet/api/system.windows.controls.textsearch?view=net-5.0
The text was updated successfully, but these errors were encountered: