You are on page 1of 3

Child Window in WPF

Let us assume there is a requirement, 1. On click event of button, a new child window should open. 2. While child window is open, the parent window should be inactive.

So start with Step 1 Create a WPF application. And drag and drop a Button on the MainPage.

Step 2 Right click on the WPF project and new item and select a WPF Window from WPF tab. Rename window to ChildWindow.xaml

Step 3 Now on the click event of button child window will get open.

On the button click event 1. An instance of Child window is being created 2. Then ShowDialog() method is being called to open the child window .

MainPage.Xaml.cs using using using using using using using using using using using using using System; System.Collections.Generic; System.Linq; System.Text; System.Windows; System.Windows.Controls; System.Windows.Data; System.Windows.Documents; System.Windows.Input; System.Windows.Media; System.Windows.Media.Imaging; System.Windows.Navigation; System.Windows.Shapes;

namespace WpfApplication2 { ///<summary> /// Interaction logic for MainWindow.xaml ///</summary> public partial class MainWindow : Window { public MainWindow() { InitializeComponent(); BtnNewWindow.Click += newRoutedEventHandler(delegate(object sender, RoutedEventArgs e) { ChildWindowchldWindow = newChildWindow();

MessageBox.Show(chldWindow.Getmessage()); chldWindow.ShowDialog(); });

} } }
So on running on the click of button new child window being open.

Comment Request!
Thank you for reading this post. Please post your feedback, question, or comments about this post Here.

You might also like