我有一个 Windows 窗体应用程序。我在我的项目中添加了一个名为 MyLibrary.cs 的类,我继承了 System.ComponentModel.Component 的此类,并且我还添加了一个位图图像,其构建操作设置为 EmbeddedResource 到我的资源文件夹,但是当我编写下面的代码并构建项目当我想将我的组件拖放到我的表单时,我的自定义图标不会改变。你能帮帮我吗?
我检查了很多链接,例如http://msdn.microsoft.com/en-us/library/system.drawing.toolboxbitmapattribute.aspx和如何找到难以捉摸的 ToolboxBitmap 图标,但没有一个对我有用!
这是我的代码:
我的图书馆.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
internal class resfinder
{
}
namespace MyForm
{
[System.Drawing.ToolboxBitmap(typeof(resfinder),"MyForm.Bitmap1.bmp")]
public class MyLibrary:System.ComponentModel.Component
{
}
}