GridViewColumn.DisplayMemberBinding Property
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
The specified data item type that displays in the column. The default is null
.
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"/>
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)
Produkt | Versionen |
---|---|
.NET Framework | 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
Windows Desktop | 3.0, 3.1, 5, 6, 7, 8, 9, 10 |
Feedback zu .NET
.NET ist ein Open Source-Projekt. Wählen Sie einen Link aus, um Feedback zu geben: