Method MergeIntoGridCell
| Improve this Doc View SourceMergeIntoGridCell<T>(RowBinding<T>, String, IFormatProvider)
Merges editor row binding into Grid
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 |
---|---|---|
Row |
editorRowBinding | The editor row binding. |
System. |
format | A composite format string. |
System. |
formatProvider | An object that supplies culture-specific formatting information. |
Returns
Type | Description |
---|---|
Row |
The row binding object of Grid |
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 Grid
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 |
---|---|---|
Row |
editorRowBinding | The editor row binding. |
Row |
inertRowBinding | The inert row binding. |
Returns
Type | Description |
---|---|
Row |
The row binding object of Grid |
Type Parameters
Name | Description |
---|---|
TEditor | The element type of the editor row binding. |
TInert | The element type of the inert row binding. |