Elmish.WPF
3.0.0
See the version list below for details.
dotnet add package Elmish.WPF --version 3.0.0
NuGet\Install-Package Elmish.WPF -Version 3.0.0
<PackageReference Include="Elmish.WPF" Version="3.0.0" />
paket add Elmish.WPF --version 3.0.0
#r "nuget: Elmish.WPF, 3.0.0"
// Install Elmish.WPF as a Cake Addin #addin nuget:?package=Elmish.WPF&version=3.0.0 // Install Elmish.WPF as a Cake Tool #tool nuget:?package=Elmish.WPF&version=3.0.0
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 (>= 3.0.0 && < 4.0.0)
- FSharp.Core (>= 4.6.0 && < 5.0.0)
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 | 82 | 10/1/2024 |
4.0.0-beta-55 | 215 | 6/4/2024 |
4.0.0-beta-54 | 313 | 9/27/2023 |
4.0.0-beta-53 | 163 | 9/9/2023 |
4.0.0-beta-52 | 154 | 9/1/2023 |
4.0.0-beta-50 | 189 | 5/19/2023 |
4.0.0-beta-49 | 171 | 5/6/2023 |
4.0.0-beta-48 | 111 | 5/6/2023 |
4.0.0-beta-47 | 142 | 5/2/2023 |
4.0.0-beta-46 | 154 | 4/5/2023 |
4.0.0-beta-45 | 337 | 7/25/2022 |
4.0.0-beta-44 | 525 | 4/6/2022 |
4.0.0-beta-43 | 197 | 4/3/2022 |
4.0.0-beta-42 | 993 | 9/11/2021 |
4.0.0-beta-41 | 4,032 | 3/12/2021 |
4.0.0-beta-40 | 535 | 3/9/2021 |
4.0.0-beta-3 | 1,253 | 2/22/2021 |
4.0.0-beta-2 | 237 | 2/13/2021 |
4.0.0-beta-1 | 277 | 2/11/2021 |
3.5.8 | 2,505 | 3/31/2021 |
3.5.7 | 503 | 2/5/2021 |
3.5.6 | 3,908 | 5/21/2020 |
3.5.5 | 588 | 4/24/2020 |
3.5.4 | 530 | 4/16/2020 |
3.5.3 | 549 | 4/13/2020 |
3.5.2 | 50,815 | 10/26/2019 |
3.5.1 | 1,110 | 10/16/2019 |
3.5.0 | 692 | 10/2/2019 |
3.4.1 | 593 | 9/26/2019 |
3.4.0 | 579 | 9/26/2019 |
3.3.0 | 601 | 9/16/2019 |
3.2.1 | 885 | 8/22/2019 |
3.2.0 | 595 | 8/20/2019 |
3.1.0 | 1,290 | 6/4/2019 |
3.0.0 | 623 | 5/28/2019 |
2.0.0 | 1,065 | 4/23/2019 |
2.0.0-beta-9 | 613 | 3/23/2019 |
2.0.0-beta-8 | 852 | 1/28/2019 |
2.0.0-beta-7 | 611 | 12/9/2018 |
2.0.0-beta-6 | 607 | 12/1/2018 |
2.0.0-beta-5 | 943 | 10/21/2018 |
2.0.0-beta-4 | 632 | 10/13/2018 |
2.0.0-beta-3 | 863 | 9/28/2018 |
2.0.0-beta-2 | 635 | 9/12/2018 |
2.0.0-beta-11 | 469 | 4/17/2019 |
2.0.0-beta-10 | 470 | 4/15/2019 |
2.0.0-beta-1 | 692 | 9/1/2018 |
1.0.0-beta-7 | 4,316 | 12/5/2017 |
1.0.0-beta-6 | 750 | 11/17/2017 |
1.0.0-beta-5 | 738 | 11/8/2017 |
1.0.0-beta-4 | 907 | 7/12/2017 |
1.0.0-beta-3 | 813 | 7/6/2017 |
1.0.0-beta-2 | 766 | 6/29/2017 |
1.0.0-beta-1 | 785 | 6/22/2017 |
0.9.0-beta-9 | 778 | 6/12/2017 |
- The most massive (and hopefully useful) update yet!
- Breaking: Overload-based syntax for `Binding`. The old `Binding` module is deprecated and renamed to `BindingFn`. The new `Binding` is a static class with static methods, providing many overloads for flexibility. To migrate, replace all occurrences of `Binding.` with `BindingFn.` and follow the deprecation warnings.
- Breaking: The `Elmish.WPF.Internal` namespace has been removed and everything in it that should actually be internal has been marked `internal`. This includes `ViewModel`.
- Breaking: `Elmish.WPF.Internal.BindingSpec<_,_>` has been moved/renamed to `Elmish.WPF.Binding<_,_>`. It should thus be more pleasant to use in type annotations.
- Breaking: `Elmish.WPF.Utilities.ViewModel.designInstance` has been moved to `Elmish.WPF.ViewModel`. Furthermore, it returns `obj` since `ViewModel` is internal.
- Breaking: Removed `twoWayIfValid`. It hasn’t worked for a while due to core Elmish internals, and was of suspect utility anyway.
- New: Many more helpful `Binding` signatures available due to the new overload-based syntax.
- New: More general `Binding.subModel` and `Binding.subModelSeq` overloads that allow a more idiomatic Elm architecture even with static views. For background information, see [#86](https://github.com/elmish/Elmish.WPF/issues/86) (the issue is otherwise outdated).
- New: Sticky `subModelOpt` bindings that returns the last non-null model when model is `None` (useful when animating out stuff)
- New: `elmEq` and `refEq` as useful equality defaults for lazy bindings. `elmEq` efficiently uses reflection to do a comparison for each member that is referential for reference types except strings, and structural for strings and value types.
- New: `Program.mkSimpleWpf` and `Program.mkProgramWpf` with more WPF-friendly signatures.
- New: `Program.mkProgramWpfWithCmdMsg` for easily following the `CmdMsg` pattern to allow testable commands. See the FAQ in the readme for details.
- New: `Cmd.showWindow` helper to open a new window.
- New: Slow calls can be logged (configurable threshold).
- New: Made available `Program.startElmishLoop` which is a low-level function that starts an Elmish loop given an Elmish `Program` and a WPF `FrameworkElement`. You probably won’t need it.
- Improvement: Logs now indicate the binding path.
- Improvement: Possibly better performance due to internals now using `ValueOption` instead of `Option`.
- Improvement: Finally added (lots of) unit tests, so confidence of correct functionality is higher. (No critical bugs were found when creating the tests.)