private void gridview_KeyPress_Event(object sender, KeyPressEventArgs e) { var txtbox = (KryptonTextBox)sender; if (txtbox.Name.Contains("monster")) { Utillities.SearchType(txtbox_monsterSearchBox, monster_gridView, "monster"); } else if (txtbox.Name.Contains("spell")) { Utillities.SearchType(txtbox_spellSearchBox, spell_gridView, "spell"); } else if (txtbox.Name.Contains("item")) { Utillities.SearchType(txtbox_itemSearchBox, item_gridView, "item"); } }