GridViewColumn.DisplayMemberBinding Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the data item to bind to for this column.
public:
property System::Windows::Data::BindingBase ^ DisplayMemberBinding { System::Windows::Data::BindingBase ^ get(); void set(System::Windows::Data::BindingBase ^ value); };
public System.Windows.Data.BindingBase DisplayMemberBinding { get; set; }
member this.DisplayMemberBinding : System.Windows.Data.BindingBase with get, set
Public Property DisplayMemberBinding As BindingBase
Property Value
The specified data item type that displays in the column. The default is null
.
Examples
The following example shows how to set the DisplayMemberBinding property.
GridViewColumn gvc1 = new GridViewColumn();
gvc1.DisplayMemberBinding = new Binding("FirstName");
gvc1.Header = "FirstName";
gvc1.Width = 100;
Dim gvc1 As New GridViewColumn()
gvc1.DisplayMemberBinding = New Binding("FirstName")
gvc1.Header = "FirstName"
gvc1.Width = 100
<GridViewColumn DisplayMemberBinding=
"{Binding Path=FirstName}"
Header="First Name" Width="100"/>
Remarks
This 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:
DisplayMemberBinding
(this property)