Click here to Skip to main content
15,895,746 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi to everyone.
Im "dummy" in wpf but i used a hostControl to display Wpf form in login Form. When i click Login button it couses MDI form to open but i can not Hide Login Form.
i use in wpf this.Visibility = Hidden; but the windows form is not hidden.
please help me.
best regard!

OP's additional information moved from non-solution below
in MDI load i used

C#
FormCollection fc = Application.OpenForms;
foreach (Form frm in fc)
{
if(frm.Equals("frmLogin"))
frm.Hide();
}
Posted
Updated 27-Nov-12 11:50am
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900