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.
我刚刚摆脱了这个错误。在MDI中,我为菜单条设置了背景图像..一切都运行良好,但是遇到了这样的设计错误,
它的Mdi.designer.cs代码示例..
this.MenuStrip1.BackgroundImage = global::WAREHOUSE.Properties.Resources.header;
请建议...
尝试使用这个
Image imageNormal = Image.FromFile("Resources\\header.jpg"); this.MenuStrip1.BackgroundImage = imageNormal ;
据我所知,您有一个名为“Resources”的文件夹,其中有一个“header.jpg”文件。正确的?您无法使用该代码访问文件夹中的文件。您希望它成为嵌入式资源吗?然后你必须将图像嵌入到资源文件中,然后你就可以这样访问它。