• 软件测试技术
  • 软件测试博客
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试论坛
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘
    暂时没有公告

字号: | 推荐给好友 上一篇 | 下一篇

在VB.Net中定制任意形状的按钮

发布: 2007-5-25 09:19 | 作者: 未知 | 来源: programfan.com | 查看: 148次 | 进入软件测试论坛讨论

领测软件测试网 思路:
    首先,创建一个Point对象数组,为按钮定制多边形。接着创建一个GraphicsPath对象,在其中添加多边形。再将GraphicsPath转化为Region。最后,将按钮的Region属性设置为前面得到的结果。
     
具体代码:
Private Sub Form1_Load(ByVal sender As System.Object, ByVal _
    e As System.EventArgs) Handles MyBase.Load
    ' 定义多边形路径中的点
    Dim pts() As Point = { _
        New Point(5, 15), _
        New Point(35, 15), _
        New Point(35, 5), _
        New Point(55, 25), _
        New Point(35, 45), _
        New Point(35, 35), _
        New Point(5, 35) _
    }

    ' 形成GraphicsPath
    Dim polygon_path As New System.Drawing.Drawing2D.GraphicsPath(FillMode.Winding)
    polygon_path.AddPolygon(pts)

    ' 将GraphicsPath转为Region
    Dim polygon_region = New Region(polygon_path)

    ' 将按钮约束在Region内
    Button1.Region = polygon_region

    ' 让按钮填充Region
    Button1.SetBounds(Button1.Location.X, Button1.Location.Y, pts(3).X + 5, pts(4).Y + 5)
End Sub

延伸阅读

文章来源于领测软件测试网 https://www.ltesting.net/


关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备2023014753号-2
技术支持和业务联系:info@testage.com.cn 电话:010-51297073

软件测试 | 领测国际ISTQBISTQB官网TMMiTMMi认证国际软件测试工程师认证领测软件测试网