vb中如何改变控制按钮上的字体颜色 5
5个回答
展开全部
Sub s()
'用颜色常数:
CommandButton1.ForeColor = vbRed '红
CommandButton1.ForeColor = vbBlue '蓝
CommandButton1.ForeColor = vbWhite '白
'用QBColor函数:
CommandButton1.ForeColor = QBColor(n) 'n的值是0到15
'用RGB函数:
CommandButton1.ForeColor = RGB(r, g, b) 'r、g、b的值分别是0到255
'直接用颜色值:
CommandButton1.ForeColor = &HFF& '红
CommandButton1.ForeColor = &HFF00& '绿
CommandButton1.ForeColor = &HFF0000 '蓝
End Sub
展开全部
CommandButton控件没有ForeColor,因此无法修改字体颜色,但是你可以编辑一个图片,将图片显示在CommandButton控件上:
Command1.Style = 1
Command1.Picture = "c:/a.gif"
Command1.Style = 1
Command1.Picture = "c:/a.gif"
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
貌似不可以,但可以设置成图形按钮,在里面加载一幅有字的图片。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
command1.forecolor=vbred'(红色)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
按钮的forecolor属性 。如:
command1.forecolor = vbblue
command1.forecolor = vbblue
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询