我必须创建一个用户控件并将其传递给模态对话框:
var control = new ThresholdWarningOverrideModalUserControl(); //The problem is this line of code not after that
var dialog = new ModalDialog(control, this.ViewModelInstance);
dialog.ShowDialog();
现在第一行代码需要4-5秒才能执行。但它甚至没有渲染任何东西。但是,此用户控件使用路径绘制。
usercontrol构造函数很简单,所有代码都在xaml中:
public ThresholdWarningOverrideModalUserControl()
{
this.InitializeComponent();
}
如果删除绘图路径,控件会快速加载。路径具有绑定和转换为图像画笔和对象。
答案 0 :(得分:0)
实际上drawpath中有图像,当我预先加载图像并将它们作为属性存储在viewmodel中,然后将视图模型提供给它在100 ms内加载的构造函数中的控件。