GitHub - DingpingZhang/WpfExtensions: Some syntactic sugar for Wpf development. (original) (raw)

English | 中文

This project comes from some scattered works I did while working on Wpf development, and is a supplement to existing Mvvm frameworks. They don't solve any major problems, they just provide some syntactic sugar and let people write a few lines of code less. Its services are not limited to Wpf development, other similar Xaml frameworks, such as Uwp, Maui, etc. should also be able to use, but I has never tested on other frameworks.

The project is structured as follows:

NuGet

Package NuGet
WpfExtensions.Xaml version
WpfExtensions.Binding version

1. WpfExtensions.Binding

Brings some of the functionality of the Reactivity module from Vue3 into Wpf.

The term "observable" as used in the following documentation refers to objects that implement INotifyPropertyChanged or INotifyCollectionChanged.

1.1 Watch

Subscribe to an observable expression and trigger a callback function when its value changes.

// See the source code for more overloads, whose signatures are consistent with vue3's watch(), and the vue3 documentation for examples. Reactivity.Default.Watch(() => Width * Height, area => Debug.WriteLine(area));

1.2 WatchDeep

Deep traversal subscribes to an observable object and triggers a callback function when its properties, or the properties of its properties, change.

// path will print out the path to the specific property that was changed. Reactivity.Default.WatchDeep(obj, path => Debug.WriteLine(path))

1.3 Computed

Computed property that is an instance method of the BindableBase base class.

public class ViewModel : BindableBase { // Can be bound to xaml to automatically notify Area changes when Width or Height changes. public double Area => Computed(() => Width * Height); }

2. WpfExtensions.Xaml

0. *New CommandExtension

<Element Command={markup:Command Execute} /> <Element Command={markup:Command ExecuteWithArgumentAsync, CanExecute} CommandParameter={Binding Argument} />

class ViewModel { public void Execute() {}

public void ExecuteWithArgument(string arg) {}

// The `Execute` method supports async, and its default `Can Execute` method will disable the command when it is busy.

public Task ExecuteAsync() => Task.Completed;

public Task ExecuteWithArgumentAsync(string arg) => Task.Completed;

// The `Can Execute` method does not support async.

public bool CanExecute() => true;

public bool CanExecuteWithArgument(string arg) => true;

}

1. ComposeExtension

Combine multiple Converters into one pipeline.

2. IfExtension

Using the Conditional expression in XAML.

3. SwitchExtension

Using the Switch expression in XAML.

4. I18nExtension

Dynamically switch the culture resource without restarting the app.

5. StylesExtension (In Progress)