我对 fsxaml 和 F# 有一个奇怪的错误。我有一个视图模型,我想从工厂属性调用 CommandSync,但它不可用。实际上它是空的,没有可用的功能。我在这里想念什么?
代码 :
namespace ViewModels
open ViewModule
type MainViewModel() as this =
inherit ViewModelBase()
let launch() = this.Factory.CommandSync(fun _ -> ())
member this.LaunchBtn = launch()
PS 我已经有 ViewModule 参考