vote up 3 vote down star
2

I have a .NET 3.5 MDI WinForms application.

I set a a child form's Icon property, and the icon shows up correctly in the top left corner of the form. I then maximize the child form and the icon is still OK.

With the child form still maximized, I open another child window, which automatically comes up maximized. This form's icon is not the one in the Icon property, but the default .NET icon (the one with the blue, red, and yellow squares). However, if I resize the MDI parent form, the icon resets itself and displays properly.

Does anyone have a workaround or know why this happens?

flag

64% accept rate
I have exactly the same problem... – Calanus Jun 28 at 10:01

4 Answers

vote up 4 vote down check

Right I have found a solution...

The workaround for this is to set the icon again on the load event of the child form as follows:

private void StatsForm_Load(object sender, EventArgs e)
{
    //bug that means you have to set the desired icon again otherwise it reverts to default when child form is maximised
    Icon = new System.Drawing.Icon("research.ico");
}

This does mean that you will have to first add the icon file in question into your VS project/solution and set it to "Copy Always" so that is copied when your solution is built.

HTH Calanus

link|flag
2  
Works like a charm. Thanks. For whatever reason I never thought to try resetting the icon. It also works as an embedded resource, so you don't have a ton of (replaceable) files sitting in the final directory. – lc Jun 30 at 0:33
vote up 1 vote down

Have you tried doing a .Refresh on the child window after opening it?

link|flag
vote up 0 vote down

Hi,

I`ve found this problem too.

Have you tried doing a .Refresh on the child window after opening it? Ive tried to to it in the Form constructor but it doesnt help.

Have you found any solution?

Thanx

link|flag
vote up 0 vote down

I found that the only solution was to deactivate and then reactivate the MDI child:

document.Show();
// Work-around for error in WinForms that causes MDI children to be loaded with the default .NET icon when opened maximised.
ActivateMdiChild(null);
ActivateMdiChild(document);

This is the solution given in this reply on MSDN forums and it worked for me.

link|flag

Your Answer

Get an OpenID
or

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