DataGridComboBoxColumn.DisplayMemberPath Property

Definition

Gets or sets a path to a value on the source object to provide the visual representation of the object.

public:
 property System::String ^ DisplayMemberPath { System::String ^ get(); void set(System::String ^ value); };
public string DisplayMemberPath { get; set; }
member this.DisplayMemberPath : string with get, set
Public Property DisplayMemberPath As String

Property Value

The path to a value on the source object. The registered default is an empty string (""). For information about what can influence the value, see DependencyProperty.

Remarks

Use this property to define a simple template that describes how to display the data objects. Setting the DisplayMemberPath property is equivalent to setting the Path of the TextBlock.Text property binding in a template. The following template shows an example of the equivalent setting.

<DataTemplate x:Key="displaymemberpath">
    <TextBlock Text="{Binding Path=LastName}"/>
</DataTemplate>

Applies to

See also