Method MergeIntoGridCell
| Improve this Doc View SourceMergeIntoGridCell<T>(RowBinding<T>, String, IFormatProvider)
Merges editor row binding into GridCell, with inert element displays as string.
Declaration
public static RowCompositeBinding<GridCell> MergeIntoGridCell<T>(this RowBinding<T> editorRowBinding, string format = null, IFormatProvider formatProvider = null)
where T : UIElement, new()
Parameters
Type | Name | Description |
---|---|---|
RowBinding<T> | editorRowBinding | The editor row binding. |
System.String | format | A composite format string. |
System.IFormatProvider | formatProvider | An object that supplies culture-specific formatting information. |
Returns
Type | Description |
---|---|
RowCompositeBinding<GridCell> | The row binding object of GridCell. |
Type Parameters
Name | Description |
---|---|
T | The element type of the editor row binding. |
MergeIntoGridCell<TEditor, TInert>(RowBinding<TEditor>, RowBinding<TInert>)
Merges editor row binding into GridCell, with inert row binding.
Declaration
public static RowCompositeBinding<GridCell> MergeIntoGridCell<TEditor, TInert>(this RowBinding<TEditor> editorRowBinding, RowBinding<TInert> inertRowBinding)
where TEditor : UIElement, new()
where TInert : UIElement, new()
Parameters
Type | Name | Description |
---|---|---|
RowBinding<TEditor> | editorRowBinding | The editor row binding. |
RowBinding<TInert> | inertRowBinding | The inert row binding. |
Returns
Type | Description |
---|---|
RowCompositeBinding<GridCell> | The row binding object of GridCell. |
Type Parameters
Name | Description |
---|---|
TEditor | The element type of the editor row binding. |
TInert | The element type of the inert row binding. |