在 C# 中清除 Picturebox.backgroundimage

发布于 2024-10-07 23:43:17 字数 135 浏览 0 评论 0原文

我有一个图片框,我可以将图像加载到其 .backgroundimage 函数中,现在我有一个按钮应该清除它,但没有。我尝试过使用这段代码: secondarycapturebox.Dispose(); 但图像仍然在图片框中。 请帮忙,

谢谢

I have a picturebox where i can load a image into its .backgroundimage function and now i have a button that is suppose to clear it but doesn't. I have tried using this code:
secondcapturebox.Dispose();
But yet still the image is in the picturebox.
Please Help,

Thanks

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

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

发布评论

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

评论(3

守不住的情 2024-10-14 23:43:17

您必须将其设置为空。像这样:

    private void button1_Click(object sender, EventArgs e) {
        if (pictureBox1.BackgroundImage != null) {
            pictureBox1.BackgroundImage.Dispose();
            pictureBox1.BackgroundImage = null;
        }
    }

You have to set it to null. Like this:

    private void button1_Click(object sender, EventArgs e) {
        if (pictureBox1.BackgroundImage != null) {
            pictureBox1.BackgroundImage.Dispose();
            pictureBox1.BackgroundImage = null;
        }
    }
扎心 2024-10-14 23:43:17

你尝试过吗...

secondcapturebox.BackgroundImage = null;

Have you tried...

secondcapturebox.BackgroundImage = null;
寄意 2024-10-14 23:43:17
pictureBox1.Image = null;
pictureBox1.Invalidate();
pictureBox1.BringToFront();

pictureBox1.BackgroundImage = null;
pictureBox1.Image = null;
pictureBox1.Invalidate();
pictureBox1.BringToFront();

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