What is the difference between Show/Hide and BringToFront/SendToBack? In which situation we should use one pair instead of the other?
|
These are completly different methods.
Hints from MSDN on BringToFront:
and on Show:
|
|||
|
|
|
Same with
|
||||
|
|
|
BringToFront simply moves a control in front of other controls (In other words, it will cover up another control) and SendToBack will allow other controls to cover it up whereas Show / Hide will actually fully show / fully hide the control from the user. As a general rule, you want to Show / Hide controls |
|||
|
|
|
Show/Hide will show or hide the control on screen. Basically it makes it visible or not. BringToFront/SendToBack will change its "z" order. If you have a button under a label and you call "BringToFront" on the button, the button will now hide the label. |
|||
|
|

