Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
タイトルの質問、親の中央でフォームを開く方法
Window win = new MyWPFWindow(); win.... ???
Window win = new MyWPFWindow(); win.WindowStartupLocation = WindowStartupLocation.CenterOwner; // the "parent" needs to be another window; most likely, you can just use "this" win.Owner = parent; win.Show();