GridViewColumn::DisplayMemberBinding Property

 

Gets or sets the data item to bind to for this column.

Namespace:   System.Windows.Controls
Assembly:  PresentationFramework (in PresentationFramework.dll)

public:
property BindingBase^ DisplayMemberBinding {
	BindingBase^ get();
	void set(BindingBase^ value);
}

Property Value

Type: System.Windows.Data::BindingBase^

The specified data item type that displays in the column. The default is null.

The DisplayMemberBinding property associates a type of data from a data source to a column so that the column displays a set of values of that type. Examples of data source objects include XmlDataProvider objects and ObjectDataProvider objects.

The following properties are all used to define the content and style of a column cell, and are listed here in their order of precedence, from highest to lowest:

The following example shows how to set the DisplayMemberBinding property.

No code example is currently available or this language may not be supported.
<GridViewColumn DisplayMemberBinding=
                    "{Binding Path=FirstName}" 
                Header="First Name" Width="100"/>

.NET Framework
Available since 3.0
Return to top
Show: