Gets or sets the data item to bind to for this column.
Public Property DisplayMemberBinding As BindingBase
Dim instance As GridViewColumn Dim value As BindingBase value = instance.DisplayMemberBinding instance.DisplayMemberBinding = value
public BindingBase DisplayMemberBinding { get; set; }
public: property BindingBase^ DisplayMemberBinding { BindingBase^ get (); void set (BindingBase^ value); }
public function get DisplayMemberBinding () : BindingBase public function set DisplayMemberBinding (value : BindingBase)
For XAML information, see the BindingBase type.
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:
DisplayMemberBinding
CellTemplate
CellTemplateSelector
The following example shows how to set the DisplayMemberBinding property. For the complete sample, see ListView That Uses a GridView Sample.
GridViewColumn gvc1 = new GridViewColumn(); gvc1.DisplayMemberBinding = new Binding("FirstName"); gvc1.Header = "FirstName"; gvc1.Width = 100;
<GridViewColumn DisplayMemberBinding= "{Binding Path=FirstName}" Header="First Name" Width="100"/>
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003