How to make a form as bottom most form in vb.Net 2008
How to make a form as bottom most form in vb.Net 开发者_JAVA技巧2008
Assuming that you're talking about the z-order, try Control.SendToBack
(Form
inherits from Control
so will also have this method). See here for doc:
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.sendtoback%28VS.71%29.aspx
精彩评论