Hi everyone,Can some one tell How to open child window from parent window MenuStrip
and after opening it should be fit inside Parent Window
the Code is
Private void Button_Click_2(object sender, RoutedEventArgs e)
{
ChildWindow cw=new ChildWindow();
cw.owner=this;
cw.Show();
}
when Child Window opens up.it Should be fit inside parent Window and the menustrip should be visible
Thanks
Gunnala Hariom Prasad
Loading
Hariom PrasadPosted Nov 27, 2013, 4:23 AM
Thanks for the Solution
but
cw.Dock=DockStyle.Fill;
Dock Property is not available here
i am using it in 'WPF'
Sanjeeb LenkaPosted Nov 27, 2013, 2:20 AM