我在尝试显示对话框时遇到了麻烦。IUIViusalizerService ShowDialog() 方法产生以下错误:
错误:“在 'MyView' 上找不到方法 'Show'
调试器运行到 UIVisualizerService.cs 到下面的方法(从 cs 文件的第 380 行开始):
protected virtual bool? ShowWindow(FrameworkElement window, bool showModal)
{
if (showModal)
{
var showDialogMethodInfo = window.GetType().GetMethodEx("ShowDialog");
if (showDialogMethodInfo != null)
{
// Child window does not have a ShowDialog, so not null is allowed
return showDialogMethodInfo.Invoke(window, null) as bool?;
}
Log.Warning("Method 'ShowDialog' not found on '{0}', falling back to 'Show'", window.GetType().Name);
}
var showMethodInfo = window.GetType().GetMethodEx("Show");
if (showMethodInfo == null)
{
string error = string.Format("Method 'Show' not found on '{0}', cannot show the window", window.GetType().Name);
Log.Error(error);
throw new NotSupportedException(error);
}
showMethodInfo.Invoke(window, null);
return null;
}
我的调用代码:
public MainWindowViewModel()
{
ViewModels.MyViewModel mv = new MyViewModel();
var ui = GetService<IUIVisualizerService>();
ui.ShowDialog(mv)
}
问题: 1. 我应该在后面的代码中隐含一个“Show()”方法吗?2. 对于必须使用的 DialogView 和/或 DialogViewModel 是否有不同的基类?
我开始在 Catel 3.6 上遇到这个问题
谢谢你