GridViewRowPresenter.Content Property

Definition

Gets or sets the data content to display in a row.

public:
 property System::Object ^ Content { System::Object ^ get(); void set(System::Object ^ value); };
public object Content { get; set; }
member this.Content : obj with get, set
Public Property Content As Object

Property Value

The object that represents the content of a row.

Remarks

The typical usage of the GridViewRowPresenter in Extensible Application Markup Language (XAML) is to place it in a ControlTemplate of a control. The template binds the Content property to a property of the control by using TemplateBinding Markup Extension. The following example shows how to bind the Content property of a GridViewRowPresenter to the Content property of a ListViewItem control.

<ControlTemplate x:Key="StronglyRecommended" 
                 TargetType='{x:Type ListViewItem}'>
  <StackPanel Background="Beige">
    <GridViewRowPresenter Content="{TemplateBinding Content}"
       Columns="{TemplateBinding GridView.ColumnCollection}"/>
    <TextBlock Background="LightBlue" Text="Strongly Recommended" />
  </StackPanel>
</ControlTemplate>

Dependency Property Information

Identifier field ContentProperty
Metadata properties set to true AffectsMeasure

Applies to