用户绘制的控件正在使用以前的表单背景

发布于 2024-07-06 17:22:24 字数 428 浏览 7 评论 0原文

我在表单上有几个用户绘制的控件,不幸的是,当显示表单时,用户绘制的控件显示以前的表单背景而不是当前的表单背景。

OnPaint事件很简单,OnBackgroundPaint事件是空的...

像这样:

    protected override void OnPaint(PaintEventArgs pe)
    {
        pe.Graphics.DrawImageUnscaled(_bmpImage, 0, 0);            
    }

    protected override void OnPaintBackground(PaintEventArgs pevent)
    {
        //Leave empty...
    }

如何让当前背景成为显示的透明度,而不是之前窗体的背景?

I have several user drawn controls on a form, unfortunately when the form is shown the user drawn controls are showing the previous forms background rather than the current forms background.

The OnPaint event is very simple, and the OnBackgroundPaint event is empty...

Like this:

    protected override void OnPaint(PaintEventArgs pe)
    {
        pe.Graphics.DrawImageUnscaled(_bmpImage, 0, 0);            
    }

    protected override void OnPaintBackground(PaintEventArgs pevent)
    {
        //Leave empty...
    }

How do I get the current background to be the transparency that is shown, rather than the background of the previous form?

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

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

发布评论

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

评论(2

莫言歌 2024-07-13 17:22:24

您需要设置窗口样式 - 这是一个 不错的基本样式文章

You need to set the window style - here's a nice basic article.

月亮邮递员 2024-07-13 17:22:24

您似乎正在重写 OnPaintBackground 方法,不对背景执行任何操作。 由于您将其留空,因此您可能不应该首先覆盖它。 当您让默认的 OnPaintBackground 处理程序完成其工作时会发生什么? 难道不应该自动正确绘制当前控件的背景吗?

PS 我从未使用过自定义绘画.Net 控件。 我只是猜测,试图帮助找到解决您问题的方法。 如果我的建议完全不对,请原谅我......

You seem to be overriding the OnPaintBackground method not do anything about the background. Since you're leaving it empty, you probably shouldn't override it in the first place. What happens when you just let the default OnPaintBackground handler do its job? Shouldn't that automatically draw the current control's background properly?

P.S. I've never worked with custom painting .Net controls. I'm merely speculating in an attempt to help find a solution to your problem. Forgive me if what I'm suggesting is completely off...

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