Skip to content

Instantly share code, notes, and snippets.

View yasithdev's full-sized avatar
👨‍💻
Beginning is fun, but true mastery comes from relentless work.

Yasith Jayawardana yasithdev

👨‍💻
Beginning is fun, but true mastery comes from relentless work.
View GitHub Profile
@mariodivece
mariodivece / MakeComboBoxSearchable.cs
Created January 3, 2015 07:15
Makes a WPF ComboBox Searchable via its items
public static void MakeComboBoxSearchable(this ComboBox targetComboBox)
{
targetComboBox.Loaded += (ls, le) =>
{
targetComboBox.Items.IsLiveFiltering = true;
var targetTextBox = targetComboBox.Template.FindName("PART_EditableTextBox", targetComboBox) as TextBox;
if (targetTextBox == null) return;
targetComboBox.IsEditable = true;