Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如,我知道如何使表单完全不可见,但按钮也变得不可见。有什么方法可以使按钮可见但表单不可见?换句话说,我想要一个背景中没有表单的图像按钮。谢谢
-佐福
最简单的方法是将背景颜色设置为透明度键:
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load Me.FormBorderStyle = Windows.Forms.FormBorderStyle.None Me.BackColor = Color.Magenta Me.TransparencyKey = Color.Magenta End Sub