Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要将 VS 用于项目的默认图标设置为我的项目中的另一个图标。有没有一种简单的方法可以访问它?
我试图去 .Properties.Resources 但它似乎不存在。它是存储在我的计算机上的某个地方还是内置在应用程序中?
马克霍尔在他上面的评论中说得对。
我的问题措辞有点不准确。我需要将我的项目中的图标与该默认图标相匹配,并用“GetValue”替换其中提到的“SetValue”函数,这会产生奇迹:
FieldInfo iconField = typeof(Form).GetField("defaultIcon", BindingFlags.NonPublic | BindingFlags.Static); myIcon = (Icon)iconField.GetValue(iconField)