在我的C#项目中,所有图标都有不同的尺寸,但即使256x256图标在所有形式中也都是16x16。
图标非常小。这个问题有解决方案吗?我需要更大的图标。我通过Visual Studio向导设置图标
答案 0 :(得分:0)
您可以尝试这样:
Icon sizedIcon = new Icon(Resources.ResourceIcon, new Size(64,64));
或试试这个:
Image img = new Icon(Properties.Resources.myIcon, width, height).ToBitmap();