Skip to content

Singulink/Singulink.WPF.Data.MethodBinding

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Singulink.WPF.Data.MethodBinding

Chat on Discord View nuget packages Build and Test

MethodBinding provides the ability to bind events directly to methods. It supports a full range of parameter passing scenarios including constants, bindings, event sender and event argument values.

Features:

  • No restrictions on the method signature.
  • Event sender or the event args can be passed as an argument.
  • Method target is resolved with full PropertyPath binding support.
  • Method arguments can be provided by bindings or other common extensions (i.e. StaticResource or x:Static).
  • Methods are matched by argument types if more than one method with the same name exists.
  • Method arguments passed as XAML strings are converted to the required method parameter types, so you don't have to use extensions / static resources or bloat the XAML by defining the method binding in element syntax instead of attribute syntax just to pass in an int or double.

About Singulink

We are a small team of engineers and designers dedicated to building beautiful, functional and well-engineered software solutions. We offer very competitive rates as well as fixed-price contracts and welcome inquiries to discuss any custom development / project support needs you may have.

This package is part of our Singulink Libraries collection. Visit https://github.com/Singulink to see our full list of publicly available libraries and other open-source projects.

Installation

The package is available on NuGet - simply install the Singulink.WPF.Data.MethodBinding package.

Supported Runtimes: .NET Core 3.0+ and .NET 5+.

Usage

To import the namespace for Singulink WPF components into your XAML file, add an xmlns definition to the root element of your XAML file as follows:

<Window xmlns:s="http://schemas.singulink.com/xaml"/>

The simplest form of a method binding just passes in the method name:

public class ViewModel
{
    public void Save() { }
}
<Button Content="Save" Click="{s:MethodBinding Save}" />

You can specify parameters to pass into the method after the method name:

public class ViewModel
{
    public void Save(string fileName) { }
}
<Button Content="Save" Click="{s:MethodBinding Save, 'filename.txt'}" />

XAML string parameters are converted automatically to method parameter types (note: this only works if there are no other overloads with the same number of parameters):

public class ViewModel
{
    public void DoStuff(int x, double y, Color z, CornerRadius cornerRadius) { }
}
<Button Click="{s:MethodBinding DoStuff, 10, 1234.567, #223344, '5,5,5,5'}" />

Parameters can accept bindings:

public class ViewModel
{
    public void Save(Document document) { }
}
<Button Content="Save" Click="{s:MethodBinding Save, {Binding CurrentDocument}}" />

Or other markup extensions:

public class ViewModel
{
    public void SetBackground(Color color) { }
}
<Button Content="Dark Mode" Click="{s:MethodBinding SetBackground, {StaticResource DarkBackground}}" />

You can pass in the sender of the event as a parameter:

public class ViewModel
{
    public void OnButtonClick(Button sender) { }
}
<Button Click="{s:MethodBinding OnButtonClick, {s:EventSender}}" />

Or the event args:

public class ViewModel
{
    public void StartDrawing(MouseEventArgs e) { }
    public void AddDrawingPoint(MouseEventArgs e) { }
    public void EndDrawing(MouseEventArgs e) { }
}
<Canvas MouseDown="{s:MethodBinding StartDrawing, {s:EventArgs}}"
        MouseMove="{s:MethodBinding AddDrawingPoint, {s:EventArgs}}"
        MouseUp="{s:MethodBinding EndDrawing, {s:EventArgs}}" />

You can even bind to properties on the event args themselves and pass them as parameters:

public class ViewModel
{
    public void UpdateSize(Size newSize) { }
}
<!-- Passes in SizeChangedEventArgs.NewSize as the parameter -->
<Canvas SizeChanged="{s:MethodBinding UpdateSize, {s:EventArgs NewSize}}" />

You can pass in as many parameters as needed. Methods that contain overloads are matched based on the number of parameters and the parameter types.

If you want to call the method on something other than the current data context, you can use bindings or other markup extensions before the method name to set the target that the method should be called on:

public class DocumentService
{
    public static DocumentService Instance { get; } = new DocumentService();
    public void Save(Document document) { }
}
<Button Content="Save" Click="{s:MethodBinding {x:Static local:DocumentService.Instance}, Save, {Binding CurrentDocument}}" />

Advanced scenarios can use a binding or other markup extension for the method name as well.

Method binding errors (i.e. the method target is null or the method name can't be resolved) are reported in the output window, similar to how normal WPF binding errors are reported. If you are having a problem with a method binding, debug the application and look there first.

About

Allows binding events directly to methods, including passing custom parameters.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages