正确绘制列表框项目 vb.net 2005

发布于 2024-11-01 10:55:58 字数 362 浏览 5 评论 0原文

我已经可以在列表框 Drawitem 事件中正确绘制一个列表框项目矩形,如下所示

在此处输入图像描述

'// Draw border ACA899
e.Graphics.DrawRectangle(myPen, e.Bounds.X, e.Bounds.Y, e.Bounds.Width,e.Bounds.Height)

如何

  1. 定位项目文本左中对齐?
  2. 纠正未正确显示的矩形的 x2,y2(见图)的末端?
  3. 指定绘制矩形的厚度?

谢谢

i already can draw a listbox item rectangle in the listbox Drawitem event properly like this

enter image description here

'// Draw border ACA899
e.Graphics.DrawRectangle(myPen, e.Bounds.X, e.Bounds.Y, e.Bounds.Width,e.Bounds.Height)

how do i

  1. position theitem text in left-middle alignment?
  2. correct the end of the x2,y2 (see picture) of the rectangle that is not showing to show properly?
  3. specify the thickness of the drawn rectangle?

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你的他你的她 2024-11-08 10:55:58

我自己找到了答案,感谢那些帮助过的人

'// Draw border ACA899
e.Graphics.DrawRectangle(myPen, e.Bounds.X, e.Bounds.Y, e.Bounds.Width-1,e.Bounds.Height)

I found the answer myself, thanks to those who helped

'// Draw border ACA899
e.Graphics.DrawRectangle(myPen, e.Bounds.X, e.Bounds.Y, e.Bounds.Width-1,e.Bounds.Height)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文