Class Binder
Used as a binding helper.
Inheritance
System.Object
Binder
Namespace: Syncfusion.Windows.Tools
Assembly: Syncfusion.Tools.Wpf.dll
Syntax
public static class Binder : Object
Methods
Bind(FrameworkElement, String)
Creates a new binding to the given source path.
Declaration
public static Binding Bind(FrameworkElement source, string path)
Parameters
Type | Name | Description |
---|---|---|
System.Windows.FrameworkElement | source | The source element to bind to. |
System.String | path | The path in the source element to bind to. |
Returns
Type | Description |
---|---|
System.Windows.Data.Binding | The binding to the given source path. |
Bind<T>(T, String)
Creates a new binding to the given source path.
Declaration
public static Binding Bind<T>(T source, string path)
Parameters
Type | Name | Description |
---|---|---|
T | source | The source element to bind to. |
System.String | path | The path in the source element to bind to. |
Returns
Type | Description |
---|---|
System.Windows.Data.Binding | The binding to the given source path. |
Type Parameters
Name |
---|
T |