扫一扫
分享文章到微信
扫一扫
关注官方公众号
至顶头条
控件类型 | 属性 | 设置值 |
Panel | Name | Panel1 |
Dock | Bottom | |
StatusBar | Name | StatusBar1 |
Dock | Fill | |
Panels | 1、加入一个Name为stabutton的面板将其Style设为OwnerDraw。 2、加入一个Name为staStatus的面板,将其Style设为Text,AutoSize设为Spring,Text设为“状态栏上放置控件”。 | |
Button | Name | Button1 |
Private Sub StatusBar1_DrawItem _ (ByVal sender As Object, ByVal sbdevent As System.Windows.Forms.StatusBarDrawItemEventArgs) _ Handles StatusBar1.DrawItem If sbdevent.Panel Is stabutton Then ‘此处是关键,一定要根据Statusbar控件中相应面板的调整大小时, ‘将放置在该面板上用户放置的控件(此处是Button1)调整为面板的尺寸。 ‘,在sbdevent.Bounds提供的面板大小中使用的坐标系统原点是在StatusBar1的左上角, ‘而因为Button1.Bounds使用的坐标系统的原点都是在Panel1的左上角,而StatusBar1和Button1的父对象 ‘同为Panel1,所以只需将sbdevent.Bounds的X及Y坐标加上StatusBar1.Location的X和Y做一个平移 ‘就可以得到Button1所应处的正确位置。 Button1.Bounds = New Rectangle(sbdevent.Bounds.X + StatusBar1.Location.X, _ sbdevent.Bounds.Y + StatusBar1.Location.Y, _ sbdevent.Bounds.Width, _ sbdevent.Bounds.Height) End If End Sub Private Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click StatusBar1.Panels(1).Text = "你点击了按钮,鼠标位置为" & Cursor.Position.ToString End Sub |
如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。
现场直击|2021世界人工智能大会
直击5G创新地带,就在2021MWC上海
5G已至 转型当时——服务提供商如何把握转型的绝佳时机
寻找自己的Flag
华为开发者大会2020(Cloud)- 科技行者