Trouble with winforms - am I missing something ?
I decided that I would spruce up my winforms app and use
the Magic user interface library(http://www.dotnetmagic.com/). I decided the best way to
do it was to create a temp form and then cut all the controls off the form I was
going to change add the new controls and then paste back the controls that I had
pasted in the temp form. Everything went well and all the event procedures were
still in the form but of course the controls were no longer with their
associated with event procedures. Which meant I had to rewire the whole form.
But even more annoying than that, if I go to the events pane of the properties
sheet for the control and clicked on the appropriate event to create the
delegate it did not create a delegate for cboDay_TextChanged but
for cboDay_TextChanged_1
I was wondering if I am missing something or how other people deal with
this problem ? It really is a pain. I know I could write a Visual Studio
macro to deal with the problem but it would help if Visual Studio was a
little bit more intelligent in the way in which it wired up events and controls.
Any ideas ?