VB 如何创建一个自定义的简单按钮控件?

VB第一次接触控件设计很点手生,手边也没有教程!按钮控件要求支持三个PictureAPictureBPictureC图片属性,目的是完成当鼠标在正常状态时按钮上时显示Pi... VB 第一次接触控件设计很点手生 ,手边也没有教程! 按钮控件要求 支持三个 PictureA PictureB PictureC 图片属性, 目的是完成 当鼠标在正常状态时按钮上时显示PictureA属性中的图片 ,鼠标经过按钮时显示PictureB属性中的图片 ,鼠标按下按钮时显示PictureC属性中的图片.别的要求就不要了 一定要能正常运行的。 请高手多帮帮忙啊 设计了二天了 也没弄出来 老是出错!又说什么要关闭什么设计器了... ! 还望高手 赐教!谢谢!我QQ271072330
我要自定义一个控件 不是直接用VB中的Command1。 我想把三张图片设置在自定义控件的属性里面!
展开
 我来答
redfire78
2008-10-15 · 超过26用户采纳过TA的回答
知道答主
回答量:68
采纳率:50%
帮助的人:40.2万
展开全部
Private Sub Form_Load()
Image1.Appearance = 0'图片框属性设置
Image1.BorderStyle = 0
Image1.Stretch = 1
Image1.Picture = Picture1.Picture
End Sub

Private Sub Form_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Image1.Appearance = 0
Image1.BorderStyle = 0
Image1.Picture = Picture1.Picture
End Sub

Private Sub Image1_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
Image1.Appearance = 1
Image1.BorderStyle = 1
Image1.Picture = Picture3.Picture
End Sub

Private Sub Image1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Image1.Appearance = 0
Image1.BorderStyle = 1
Image1.Picture = Picture2.Picture
End Sub

这样做的缺点是不能按的太快。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友76985fe
2008-10-15 · 超过36用户采纳过TA的回答
知道答主
回答量:176
采纳率:0%
帮助的人:127万
展开全部
Private Sub Command1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Command1.Picture = Picture3.Picture

End Sub

Private Sub Command1_Mousedown(Button As Integer, Shift As Integer, X As Single, Y As Single)
Command1.Picture = PictureB.Picture

End Sub

Private Sub Form_Load()

Command1.Picture = PictureA.Picture
End Sub

Private Sub Command1_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)
Command1.Picture = PictureC.Picture

End Sub
注意,要把command1的style的值设置为1,否则什么都不会显示的。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
qqsq31
2008-10-17
知道答主
回答量:1
采纳率:0%
帮助的人:0
展开全部
Image1.Appearance = 0'图片框属性设置
Image1.BorderStyle = 0
Image1.Stretch = 1
Image1.Picture = Picture1.Picture
End Sub

Private Sub Form_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Image1.Appearance = 0
Image1.BorderStyle = 0
Image1.Picture = Picture1.Picture
End Sub

Private Sub Image1_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
Image1.Appearance = 1
Image1.BorderStyle = 1
Image1.Picture = Picture3.Picture
End Sub

Private Sub Image1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Image1.Appearance = 0
Image1.BorderStyle = 1
Image1.Picture = Picture2.Picture
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
ljl88900
2008-10-15 · TA获得超过2661个赞
知道大有可为答主
回答量:2197
采纳率:100%
帮助的人:2636万
展开全部
已在QQ中解决。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
qqsq35
2008-10-18
知道答主
回答量:3
采纳率:0%
帮助的人:0
展开全部
发到你的邮箱里了 自己注意查收!
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式