0
我正在使用Caliburn Micro的MVVM, 所以我能夠OpenViews,但無法移動它們。如何在ShellView中移動Caliburn Micro子視圖?
我已經設置了WindowStyle=None
,這裏是我的代碼。
private void OpenView(object ViewModel)
{
windowManager.ShowWindow(ViewModel,
settings: new Dictionary<string, object>
{
{"Background",Brushes.Transparent},
{ "WindowStyle", WindowStyle.None},
{ "ShowInTaskbar", false},
{"AllowsTransparency",true}
});
}
請幫忙。