Skip to content

Instantly share code, notes, and snippets.

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

Yasith Jayawardana yasithdev

👨‍💻
Beginning is fun, but true mastery comes from countless hours of work.
View GitHub Profile
@skoqaq
skoqaq / build4123.sublime4.key
Last active May 3, 2024 16:31
Sublime Text 4 License Key
—– BEGIN LICENSE —–
Mifeng User
Single User License
EA7E-1184812
C0DAA9CD 6BE825B5 FF935692 1750523A
EDF59D3F A3BD6C96 F8D33866 3F1CCCEA
1C25BE4D 25B1C4CC 5110C20E 5246CC42
D232C83B C99CCC42 0E32890C B6CBF018
B1D4C178 2F9DDB16 ABAA74E5 95304BEF
9D0CCFA9 8AF8F8E2 1E0A955E 4771A576
@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;