gpt4 book ai didi

c# - 如何在 MessageBoxIcon.Stop image 等形式上显示图像

转载 作者:行者123 更新时间:2023-11-30 13:49:29 25 4
gpt4 key购买 nike

如何在 C# 2008 的 WindowsFormsApplication 中显示像 MessageBoxIcon.Stop 图像这样的窗体

最佳答案

您可以使用 SystemIcons 中的其中一个图标类。

链接的 MSDN 文章有一个示例。

这不是一个很好的例子,因为 (a) 它不处置它创建的 Bitmap,(b) 它不使用 try/finally 来确保它创建的 Graphics 对象在发生异常时处置, 并且 (c) 按钮点击事件处理程序不适合绘制。

我会处理 Form 的 Paint 事件,并按如下方式绘制它:

private void MyForm_Paint(object sender, System.Windows.Forms.PaintEventArgs e)
{
e.Graphics.DrawIcon(SystemIcons.Error, 16, 16);
}

关于c# - 如何在 MessageBoxIcon.Stop image 等形式上显示图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9433113/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com