C# ColumnHeader的自由空间背景色

发布于 2024-08-19 03:52:15 字数 869 浏览 7 评论 0原文

我正在尝试在 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 技术交流群。

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

发布评论

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

评论(1

花落人断肠 2024-08-26 03:52:15

未涂成黑色的区域位于标题客户区域之外——因此控件无法绘制。

没有简单的方法可以改变该区域的颜色。看看这个问题及其答案查看一些可能的解决方案。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文