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 | 119 | 10/1/2024 |
4.0.0-beta-55 | 272 | 6/4/2024 |
4.0.0-beta-54 | 328 | 9/27/2023 |
4.0.0-beta-53 | 176 | 9/9/2023 |
4.0.0-beta-52 | 165 | 9/1/2023 |
4.0.0-beta-50 | 200 | 5/19/2023 |
4.0.0-beta-49 | 180 | 5/6/2023 |
4.0.0-beta-48 | 120 | 5/6/2023 |
4.0.0-beta-47 | 152 | 5/2/2023 |
4.0.0-beta-46 | 162 | 4/5/2023 |
4.0.0-beta-45 | 354 | 7/25/2022 |
4.0.0-beta-44 | 556 | 4/6/2022 |
4.0.0-beta-43 | 207 | 4/3/2022 |
4.0.0-beta-42 | 1,020 | 9/11/2021 |
4.0.0-beta-41 | 4,042 | 3/12/2021 |
4.0.0-beta-40 | 545 | 3/9/2021 |
4.0.0-beta-3 | 1,262 | 2/22/2021 |
4.0.0-beta-2 | 245 | 2/13/2021 |
4.0.0-beta-1 | 286 | 2/11/2021 |
3.5.8 | 2,838 | 3/31/2021 |
3.5.7 | 515 | 2/5/2021 |
3.5.6 | 4,086 | 5/21/2020 |
3.5.5 | 601 | 4/24/2020 |
3.5.4 | 544 | 4/16/2020 |
3.5.3 | 563 | 4/13/2020 |
3.5.2 | 59,673 | 10/26/2019 |
3.5.1 | 1,122 | 10/16/2019 |
3.5.0 | 704 | 10/2/2019 |
3.4.1 | 607 | 9/26/2019 |
3.4.0 | 594 | 9/26/2019 |
3.3.0 | 617 | 9/16/2019 |
3.2.1 | 900 | 8/22/2019 |
3.2.0 | 611 | 8/20/2019 |
3.1.0 | 1,304 | 6/4/2019 |
3.0.0 | 637 | 5/28/2019 |
2.0.0 | 1,081 | 4/23/2019 |
2.0.0-beta-9 | 623 | 3/23/2019 |
2.0.0-beta-8 | 878 | 1/28/2019 |
2.0.0-beta-7 | 624 | 12/9/2018 |
2.0.0-beta-6 | 623 | 12/1/2018 |
2.0.0-beta-5 | 957 | 10/21/2018 |
2.0.0-beta-4 | 647 | 10/13/2018 |
2.0.0-beta-3 | 893 | 9/28/2018 |
2.0.0-beta-2 | 650 | 9/12/2018 |
2.0.0-beta-11 | 480 | 4/17/2019 |
2.0.0-beta-10 | 480 | 4/15/2019 |
2.0.0-beta-1 | 707 | 9/1/2018 |
1.0.0-beta-7 | 4,329 | 12/5/2017 |
1.0.0-beta-6 | 763 | 11/17/2017 |
1.0.0-beta-5 | 749 | 11/8/2017 |
1.0.0-beta-4 | 920 | 7/12/2017 |
1.0.0-beta-3 | 824 | 7/6/2017 |
1.0.0-beta-2 | 779 | 6/29/2017 |
1.0.0-beta-1 | 802 | 6/22/2017 |
0.9.0-beta-9 | 790 | 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