Title says it all really. I just started learning C# today with MS Visual C# - I say learning, but it feels like I'm just dragging and dropping things.
So, anyway, I can do said task when the user selects the option and then clicks it again by doing this:
But I was wondering if I can do the same but when the user selects something.
Cheers,
Markus.
So, anyway, I can do said task when the user selects the option and then clicks it again by doing this:
Code:
private void toolStripComboBox1_Click(object sender, EventArgs e)
{
textBox1.Text = toolStripComboBox1.Text;
}
Cheers,
Markus.
Comment