在新的 Elmish.WPF 4.0 beta 版本中,runWindowWithConfig 在哪里?
In the new Elmish.WPF 4.0 beta version, where is runWindowWithConfig?
我一直在玩 Elmish.WPF 4.0 的新测试版,但似乎找不到
Program.runWindowWithConfig。是否已更换?
let entryPoint (_: string[], mainWindow: Window) =
Program.mkProgram init update bindings
|> Program.runWindowWithConfig
{ ElmConfig.Default with LogTrace = true; Measure = true; MeasureLimitMs = 1 }
mainWindow
TIA
是的,已被替换。对于配置的每个字段,我用 WpfProgram
上的设置函数替换了它。这种设计允许添加新值以向后兼容的方式进行配置。参见 a sample。
我一直在玩 Elmish.WPF 4.0 的新测试版,但似乎找不到 Program.runWindowWithConfig。是否已更换?
let entryPoint (_: string[], mainWindow: Window) =
Program.mkProgram init update bindings
|> Program.runWindowWithConfig
{ ElmConfig.Default with LogTrace = true; Measure = true; MeasureLimitMs = 1 }
mainWindow
TIA
是的,已被替换。对于配置的每个字段,我用 WpfProgram
上的设置函数替换了它。这种设计允许添加新值以向后兼容的方式进行配置。参见 a sample。