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.
ユーザーコントロールを子ウィンドウとして機能させる方法はありますか..? ユーザーコントロールが子ウィンドウのように動作する必要があります...可能ですか?
Childwindow の Content 内に Usercontrol を配置できます。mvvmでも可能です。
System.Windows.Controls.ChildWindow childWindow = new System.Windows.Controls.ChildWindow(); childWindow.Content = userControlObject; childWindow.Show();