请向我解释如何使用此方法:
AutoWireViewModelChanged(object view, Action<object, object> setDataContextCallback)
绑定视图和视图模型的最佳方法是什么?
答案 0 :(得分:3)
您无需从代码中调用该方法来绑定视图和viewmodel。您只需将此行添加到视图的xaml中,绑定就会自动发生。如果您想更深入地阅读本主题,请在官方文档中check this paragraph。
ViewModelLocator.AutoWireViewModel="true"
您可以在Prism GitHub存储库上查看this sample以查看工作示例。