如何在silverlight mvvm中将usercontrol用作子窗口?

时间:2012-11-16 05:25:11

标签: silverlight mvvm

有没有办法将usercontrol作为子窗口...?我需要usercontrol就像子窗口一样......有可能吗?

1 个答案:

答案 0 :(得分:1)

您可以将Usercontrol置于Childwindow的内容中。 它也有可能在mvvm中。

System.Windows.Controls.ChildWindow childWindow = new System.Windows.Controls.ChildWindow();
childWindow.Content = userControlObject; 
childWindow.Show();