J
Just Me
I have a UserControl that contains a few controls on it.
If when one of the buttons is clicked I want to, in the click event, set the
cursor to
Cursor = Cursors.WaitCursor
I want the cursor to change everywhere on the UserControl.
Do I have to loop over the UserControl's Control collection and set each
control's cursor?
Suppose I want the entire form containing the usercontrol to display a
WaitCursor, do I need to raise an event and have the form loop over all it's
controls?
Thanks in advance
If when one of the buttons is clicked I want to, in the click event, set the
cursor to
Cursor = Cursors.WaitCursor
I want the cursor to change everywhere on the UserControl.
Do I have to loop over the UserControl's Control collection and set each
control's cursor?
Suppose I want the entire form containing the usercontrol to display a
WaitCursor, do I need to raise an event and have the form loop over all it's
controls?
Thanks in advance