about MdiParent and IsMdiChild

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am using c#2005 Beta to write a Mdi form, but I can't find the MDI
properties as: IsMdiChild or MdiParent.

I am a beginner of c#, is it the difference between .net 2003 edition and
2005 beta?
If i want to generate Mdi, how can I generate child form?

thank you.
 
Add an MDIParent to yoy project (Add new Item)

You can set the MDIParent property of the child window in code:

childform.MDIParent = ParentForm

Hope this helps
 
Back
Top