According to http://wpftoolkit.codeplex.com/SourceControl/latest#Main/Source/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/PropertyItemCollection.cs
the method "internal static Predicate<object> CreateFilter( string text ):" used in the property grid has the following line
"return property.DisplayName.ToLower().StartsWith( text.ToLower());"
Shouldn't this have Contains() instead of StartsWith()? For example we have a property called "My Cool Property". This will only work if we search "My". Shouldn't it work if we search "cool" as well?
If this is for some reason the intended behavior, is there an easy way to modify it for our needs?
the method "internal static Predicate<object> CreateFilter( string text ):" used in the property grid has the following line
"return property.DisplayName.ToLower().StartsWith( text.ToLower());"
Shouldn't this have Contains() instead of StartsWith()? For example we have a property called "My Cool Property". This will only work if we search "My". Shouldn't it work if we search "cool" as well?
If this is for some reason the intended behavior, is there an easy way to modify it for our needs?