gpt4 book ai didi

c# - 应用程序找不到我的 .ico 文件

转载 作者:太空宇宙 更新时间:2023-11-03 20:01:11 25 4
gpt4 key购买 nike

应用程序找不到我的 ico 文件。我应该在哪里添加图片?
我收到一个类型为“System.IO.FileNotFoundException”的未处理异常

namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();

this.notifyIcon1.Icon = new Icon("mmm.ico");
this.ShowInTaskbar = true;
}
}
}

enter image description here

最佳答案

那是因为您尝试从您的应用程序文件夹加载图标,但它位于您的Project 文件夹中(将图标文件移至 Bin/Debug 或 Bin/Release 文件夹)。

如果您想从程序集中加载图标,请将其设置为嵌入式资源并加载:Assembly.GetExecutingAssembly().GetManifestResourceStream('<<Path to your ressource>>')

Can't load a manifest resource with GetManifestResourceStream()获取代码库的最佳方式:Gets the location of the assembly

关于c# - 应用程序找不到我的 .ico 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28113225/

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