how change level?
-
hi is it possible change the level of visualization of an shape (textbox, image, label ....)? If I've two shapes in the same position and i wanted to see the shapes behind is possible change the priority of visualization? ps the answer is ok for VB and C#
-
hi is it possible change the level of visualization of an shape (textbox, image, label ....)? If I've two shapes in the same position and i wanted to see the shapes behind is possible change the priority of visualization? ps the answer is ok for VB and C#
-
hi is it possible change the level of visualization of an shape (textbox, image, label ....)? If I've two shapes in the same position and i wanted to see the shapes behind is possible change the priority of visualization? ps the answer is ok for VB and C#
The property to use is
Opacity
. See e.g. http://msdn.microsoft.com/en-us/library/fyby5ek5%28v=vs.80%29.aspx[^] -
The property to use is
Opacity
. See e.g. http://msdn.microsoft.com/en-us/library/fyby5ek5%28v=vs.80%29.aspx[^]Opacity only works at the Form level, not controls.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak -
hi is it possible change the level of visualization of an shape (textbox, image, label ....)? If I've two shapes in the same position and i wanted to see the shapes behind is possible change the priority of visualization? ps the answer is ok for VB and C#
Look into the Control.SendToBack[^] and Control.BringToFront[^] methods.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak -
hi is it possible change the level of visualization of an shape (textbox, image, label ....)? If I've two shapes in the same position and i wanted to see the shapes behind is possible change the priority of visualization? ps the answer is ok for VB and C#
Open
yourformfile.designer.vb
and rearrange the initializing code, so that things that need to be displayed at the back come (in the code) before the things that need to be displayed further in front. P.S. I made a lot of assumptions.