Example #1
0
        private void Button_Click_3(object sender, RoutedEventArgs e)
        {
            WinSearch win = new WinSearch();

            win.Owner = this;
            win.Show();
        }
Example #2
0
        private void Button_Click_3(object sender, RoutedEventArgs e)
        {
            Window win = new WinSearch();

            win.WindowStartupLocation = WindowStartupLocation.CenterOwner;
            win.Owner = this;
            win.Show();
        }