GridView.Columns Property

Definition

Gets the collection of GridViewColumn objects that is defined for this GridView.

C#
public System.Windows.Controls.GridViewColumnCollection Columns { get; }

Property Value

The collection of columns in the GridView. The default value is null.

Examples

The following example shows how to add a GridViewColumn to the columns in a GridView by using the Add method on the Columns property.

C#
GridViewColumn gvc3 = new GridViewColumn();
gvc3.DisplayMemberBinding = new Binding("EmployeeNumber");
gvc3.Header = "Employee No.";
gvc3.Width = 100;
myGridView.Columns.Add(gvc3);

Remarks

This property lets you modify the columns that are defined for a GridView, by using methods that are inherited from the Collection<T> class, such as the Add, Insert, and Remove methods.

XAML Property Element Usage

<object>
  OneOrMoreGridViewColumns
</object>

XAML Values

OneOrMoreGridViewColumns One or more GridViewColumn elements.

Applies to

Produk Versi
.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