4 references to IsTextSearchEnabledProperty
PresentationFramework (4)
src\Framework\System\Windows\Controls\ComboBox.cs (1)
57
IsTextSearchEnabledProperty
.OverrideMetadata(typeof(ComboBox), new FrameworkPropertyMetadata(BooleanBoxes.TrueBox));
src\Framework\System\Windows\Controls\ItemsControl.cs (2)
1138
get { return (bool) GetValue(
IsTextSearchEnabledProperty
); }
1139
set { SetValue(
IsTextSearchEnabledProperty
, BooleanBoxes.Box(value)); }
src\Framework\System\Windows\Controls\ListBox.cs (1)
70
IsTextSearchEnabledProperty
.OverrideMetadata(typeof(ListBox), new FrameworkPropertyMetadata(BooleanBoxes.TrueBox));