正确绘制列表框项目 vb.net 2005
我已经可以在列表框 Drawitem 事件中正确绘制一个列表框项目矩形,如下所示
'// Draw border ACA899
e.Graphics.DrawRectangle(myPen, e.Bounds.X, e.Bounds.Y, e.Bounds.Width,e.Bounds.Height)
如何
- 定位项目文本左中对齐?
- 纠正未正确显示的矩形的 x2,y2(见图)的末端?
- 指定绘制矩形的厚度?
谢谢
i already can draw a listbox item rectangle in the listbox Drawitem event properly like this
'// Draw border ACA899
e.Graphics.DrawRectangle(myPen, e.Bounds.X, e.Bounds.Y, e.Bounds.Width,e.Bounds.Height)
how do i
- position theitem text in left-middle alignment?
- correct the end of the x2,y2 (see picture) of the rectangle that is not showing to show properly?
- specify the thickness of the drawn rectangle?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我自己找到了答案,感谢那些帮助过的人
I found the answer myself, thanks to those who helped