I am developing an application in C#. I\'m using .Net under WPF. I want to open a new child window (like a dialog) and it should open within the main window, just below the menu
Try this.
MyChildWindow cw = new MyChildWindow(); cw.ShowInTaskbar = false; cw.Owner = Application.Current.MainWindow; cw.Show();