C# ColumnHeader的自由空间背景色
我正在尝试在 FastObjectListView 控件中绘制自定义 ColumnHeaders。
到目前为止,代码可以工作,但 ColumnHeaders 可用空间(因此不包含任何列标题 atm 的部分)仍然默认绘制。
private void olvMain_DrawColumnHeader(object sender, DrawListViewColumnHeaderEventArgs e)
{
e.Graphics.FillRectangle(Brushes.Black,
e.Bounds.X, e.Bounds.Y,
e.Bounds.Width, e.Bounds.Height);
e.Graphics.DrawRectangle(Pens.Lime,
e.Bounds.X - 1, e.Bounds.Y - 1,
e.Bounds.Width - 1, e.Bounds.Height - 1);
e.DrawText();
e.DrawDefault = false;
}
我补充道:
e.DrawDefault = false;
因为如果没有这个,列标题默认样式就会绘制在我的自定义样式之上, 但由于列标题栏的可用空间不包含任何列标题,它仍然按默认样式绘制。
这是一张图片来澄清我所说的 Columnheader 的可用空间的含义: 图片链接
提前致谢。
I'm trying to draw custom ColumnHeaders in a FastObjectListView control.
So far the code works, but the ColumnHeaders free space ( so the part that does not contain any column headers atm ) still draws as default.
private void olvMain_DrawColumnHeader(object sender, DrawListViewColumnHeaderEventArgs e)
{
e.Graphics.FillRectangle(Brushes.Black,
e.Bounds.X, e.Bounds.Y,
e.Bounds.Width, e.Bounds.Height);
e.Graphics.DrawRectangle(Pens.Lime,
e.Bounds.X - 1, e.Bounds.Y - 1,
e.Bounds.Width - 1, e.Bounds.Height - 1);
e.DrawText();
e.DrawDefault = false;
}
I added:
e.DrawDefault = false;
because without that the columnheaders default style got drawn on top of my custom style,
but as the columnheaderbar's free space doesn't contain any columnheaders it's still drawn by it's default style.
Here's a pic to clarify what I mean by Columnheader's free space:
Image Link
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
未涂成黑色的区域位于标题客户区域之外——因此控件无法绘制。
没有简单的方法可以改变该区域的颜色。看看这个问题及其答案查看一些可能的解决方案。
The area that is not painted black is outside of the headers client area -- thus not paintable by the control.
There is no easy way to change the color of that area. Have a look at this question and its answer to see some possible solutions.