WpfExtensions.Binding
0.1.0
See the version list below for details.
dotnet add package WpfExtensions.Binding --version 0.1.0
NuGet\Install-Package WpfExtensions.Binding -Version 0.1.0
<PackageReference Include="WpfExtensions.Binding" Version="0.1.0" />
paket add WpfExtensions.Binding --version 0.1.0
#r "nuget: WpfExtensions.Binding, 0.1.0"
// Install WpfExtensions.Binding as a Cake Addin #addin nuget:?package=WpfExtensions.Binding&version=0.1.0 // Install WpfExtensions.Binding as a Cake Tool #tool nuget:?package=WpfExtensions.Binding&version=0.1.0
WpfExtensions.Binding
This module is designed to solve the problem of property update dependency, which is often encountered in development: the value of a property is calculated from multiple other property, then when these dependent properties changed, the resultant property also needs to notify the UI to update. For example: RectArea = Width * Height
, all three properties in this formula need to be bound to the UI, and the display of the RectArea
will be automatically refreshed when Width
and Height
are changed.
To achieve this effect, the traditional implementation is as follows, and it's not hard to find: it's quite a pain to write, and each dependent property has to add a line of code to notify the result property to refresh.
// View Model
public double Width {
get => field;
set {
if (SetProperty(ref field, value)) {
RaisePropertyChanged(nameof(RectArea));
}
}
}
public double Height {
get => field;
set {
if (SetProperty(ref field, value)) {
RaisePropertyChanged(nameof(RectArea));
}
}
}
public double RectArea => Width * Height;
So after using WpfExtensions.Binding
, can it be shorter?
// View Model is derived from WpfExtensions.Binding.BindableBase.
public double Width {
get => field;
set => SetProperty(ref field, value);
}
public double Height {
get => field;
set => SetProperty(ref field, value);
}
public double RectArea => Computed(() => Width * Height);
Perhaps this example is too simple. If the same property affects multiple results, then multiple result properties have to be raised in that property. Such an intricate update dependency is not easy to maintain.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.