Visual Studio Professional 2015. C# Winform project.
I have a form that has a textbox control on it. The textbox
control has a textbox_TextChanged event handler.
When I create the form:
testFrm = new TestForm();
testFrm.Disposed += new EventHandler(testFrm_Disposed);
testFrm.Show();
The Weird thing is that the textbox_TextChanged event gets triggered
when the testFrm.Show() statement executes.
Is this expected behavior? Its causing me some grief.
thanks.
I have a form that has a textbox control on it. The textbox
control has a textbox_TextChanged event handler.
When I create the form:
testFrm = new TestForm();
testFrm.Disposed += new EventHandler(testFrm_Disposed);
testFrm.Show();
The Weird thing is that the textbox_TextChanged event gets triggered
when the testFrm.Show() statement executes.
Is this expected behavior? Its causing me some grief.
thanks.