在VB中制作透明按钮
请问该如何设定, 才会使按钮只显示出前景的文字, 而背景显示出表单上自己贴上的底图?
用 Label 摹拟 CommandButton ,范例如下:
Option Explicit
Private Sub Form_Load()
Label1.BackStyle = 0
Label1.BorderStyle = 1
Label1.ForeColor = RGB(255, 255, 0)
Label1.FontSize = 16
Label1.FontBold = True
Label1.FontName = "标楷体"
Label1.Caption = "按钮一"
Me.Picture = LoadPicture("d:\image\02.jpg")
End Sub
Private Sub Label1_Click()
MsgBox "执行一号副程式"
End Sub
Tags:
作者:佚名评论内容只代表网友观点,与本站立场无关!
评论摘要(共 0 条,得分 0 分,平均 0 分)
查看完整评论