Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a C# app where one of my Form icons is visible in the designer but reverts to the default icon at runtime. The form in question is a derived form, with no .designer.cs file of its own, and the derived form .cs file is empty. The form icon displays in the designer correctly, but at runtime the icon is missing.

The derived form is in a different project from the base form. The base form icon was added via the designer, and no modifications were made to the base .designer.cs file.

Any ideas what might be causing this?

share|improve this question
is this in the designer or actually running the code ? – Micah Armantrout Apr 17 '12 at 1:28
The icon shows in the designer, but not at runtime. Using VS2010 – RJ Lohan Apr 17 '12 at 1:34
Does the icon show when you run the application outside of the debugger? See msdn.microsoft.com/en-us/library/… – Dan Busha Apr 17 '12 at 3:30
@DanBusha this is a Windows.Forms problem (not WPF) and incidentally I'm only running on .NET3.5. I have found a workaround/solution below. – RJ Lohan Apr 17 '12 at 23:09

1 Answer

After mucking about for a bit, I think my problem is related to this bug in VS: https://connect.microsoft.com/VisualStudio/feedback/details/106264/mdi-form-icon-formborderstyle-windowstate-maximized#tabs

I got around my issue by re-adding the Icon to the derived form (using the designer), and then also had to add a _Load handler with the following

System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MyForm));
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));

Does the job, though I don't enjoy hacky workarounds!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.