// if character changed, try to find it in the dictionary and redraw private void textBox1_TextChanged(object sender, EventArgs e) { if (txtNewCharacter.Text != String.Empty) { bits = ld.GetValue(txtNewCharacter.Text[0]); pbCharDesign.Invalidate(); pbCharPreview.Invalidate(); } }