MainForm.TextBox_KeyPress C# (CSharp) Method

TextBox_KeyPress() public method

public TextBox_KeyPress ( Object sender, KeyPressEventArgs e ) : void
sender Object
e KeyPressEventArgs
return void
	void TextBox_KeyPress (Object sender, KeyPressEventArgs e)
	{
		_eventsText.AppendText ("TextBox => KeyPress ("  + e.KeyChar + ")"
			+ Environment.NewLine);
	}

Same methods

MainForm::TextBox_KeyPress ( object sender, KeyPressEventArgs e ) : void
MainForm