Elmish.WPF
2.0.0-beta-1
See the version list below for details.
dotnet add package Elmish.WPF --version 2.0.0-beta-1
NuGet\Install-Package Elmish.WPF -Version 2.0.0-beta-1
<PackageReference Include="Elmish.WPF" Version="2.0.0-beta-1" />
paket add Elmish.WPF --version 2.0.0-beta-1
#r "nuget: Elmish.WPF, 2.0.0-beta-1"
// Install Elmish.WPF as a Cake Addin #addin nuget:?package=Elmish.WPF&version=2.0.0-beta-1&prerelease // Install Elmish.WPF as a Cake Tool #tool nuget:?package=Elmish.WPF&version=2.0.0-beta-1&prerelease
F# bindings for using Elmish in WPF
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net461 is compatible. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
- Elmish (>= 2.0.0-beta-4)
- FSharp.Core (>= 4.1.17)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
4.0.0-beta-56 | 112 | 10/1/2024 |
4.0.0-beta-55 | 253 | 6/4/2024 |
4.0.0-beta-54 | 326 | 9/27/2023 |
4.0.0-beta-53 | 174 | 9/9/2023 |
4.0.0-beta-52 | 163 | 9/1/2023 |
4.0.0-beta-50 | 198 | 5/19/2023 |
4.0.0-beta-49 | 178 | 5/6/2023 |
4.0.0-beta-48 | 118 | 5/6/2023 |
4.0.0-beta-47 | 150 | 5/2/2023 |
4.0.0-beta-46 | 160 | 4/5/2023 |
4.0.0-beta-45 | 349 | 7/25/2022 |
4.0.0-beta-44 | 545 | 4/6/2022 |
4.0.0-beta-43 | 205 | 4/3/2022 |
4.0.0-beta-42 | 1,018 | 9/11/2021 |
4.0.0-beta-41 | 4,038 | 3/12/2021 |
4.0.0-beta-40 | 543 | 3/9/2021 |
4.0.0-beta-3 | 1,260 | 2/22/2021 |
4.0.0-beta-2 | 243 | 2/13/2021 |
4.0.0-beta-1 | 284 | 2/11/2021 |
3.5.8 | 2,785 | 3/31/2021 |
3.5.7 | 511 | 2/5/2021 |
3.5.6 | 4,057 | 5/21/2020 |
3.5.5 | 596 | 4/24/2020 |
3.5.4 | 540 | 4/16/2020 |
3.5.3 | 557 | 4/13/2020 |
3.5.2 | 58,449 | 10/26/2019 |
3.5.1 | 1,118 | 10/16/2019 |
3.5.0 | 700 | 10/2/2019 |
3.4.1 | 603 | 9/26/2019 |
3.4.0 | 589 | 9/26/2019 |
3.3.0 | 612 | 9/16/2019 |
3.2.1 | 896 | 8/22/2019 |
3.2.0 | 606 | 8/20/2019 |
3.1.0 | 1,302 | 6/4/2019 |
3.0.0 | 635 | 5/28/2019 |
2.0.0 | 1,078 | 4/23/2019 |
2.0.0-beta-9 | 621 | 3/23/2019 |
2.0.0-beta-8 | 872 | 1/28/2019 |
2.0.0-beta-7 | 621 | 12/9/2018 |
2.0.0-beta-6 | 621 | 12/1/2018 |
2.0.0-beta-5 | 955 | 10/21/2018 |
2.0.0-beta-4 | 646 | 10/13/2018 |
2.0.0-beta-3 | 887 | 9/28/2018 |
2.0.0-beta-2 | 649 | 9/12/2018 |
2.0.0-beta-11 | 478 | 4/17/2019 |
2.0.0-beta-10 | 478 | 4/15/2019 |
2.0.0-beta-1 | 706 | 9/1/2018 |
1.0.0-beta-7 | 4,326 | 12/5/2017 |
1.0.0-beta-6 | 760 | 11/17/2017 |
1.0.0-beta-5 | 746 | 11/8/2017 |
1.0.0-beta-4 | 917 | 7/12/2017 |
1.0.0-beta-3 | 821 | 7/6/2017 |
1.0.0-beta-2 | 776 | 6/29/2017 |
1.0.0-beta-1 | 799 | 6/22/2017 |
0.9.0-beta-9 | 786 | 6/12/2017 |
- Complete rewrite, several breaking changes and new features
- `twoWayValidation` is called `twoWayIfValid` (because that’s what it is, and it clearly separates it from the new `twoWayValidate`)
- `oneWayMap` is called `oneWayLazy` (its implementation has changed, and the use case has expanded, but is similar)
- `cmd` and `cmdIf` have been renamed `paramCmd` and `paramCmdIf`, because the old names have new signatures/use-cases
- `model` has been renamed `subModel` because it’s more clear, and consistent with the new `subModelOpt` and `subModelSeq`
- `Program.runDebugWindow` has been removed in favour of `Program.runWindowWithConfig`
- Bundled Elmish has been removed, and Elmish 2.0 is used as an external dependency
- Any `Application ` instance instantiated before calling `Program.run...` will now be used
- Several new functions in the `Binding` module; dot into it in your IDE or see the repository for samples or source code