C# tutorial: a Simple Dictionary-Make search box workable |
|||||||||||||||||||||||||||
Dictionary: Make search box workableTo make the search box workable you need the following code that is applied to the TextChanged event of the text box:
private void Txtbox_TextChanged(object sender, EventArgs e) When a user types a word in the search text box TxtBox, This word is used to compare with a word in the list box. If the words are matched the word in the list will be selected and its translation will display in the rich text box Txtresult. The highlight() procedure is called to change colors of the English key terms in the rich text box Txtresult. This procedure will be discussed in the next phase. If the use chooses to select from the list rather than typing in to the search box, you need another piece of code applied to the SelectedIndexChanged event of the list box:
private void Lstterms_SelectedIndexChanged(object sender, EventArgs e) Note: The DataRow dr is used to get data of a selected row of the table.
|
|||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||