GridView.Columns Property
Definition
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 the collection of GridViewColumn objects that is defined for this GridView.
public:
property System::Windows::Controls::GridViewColumnCollection ^ Columns { System::Windows::Controls::GridViewColumnCollection ^ get(); };
public System.Windows.Controls.GridViewColumnCollection Columns { get; }
member this.Columns : System.Windows.Controls.GridViewColumnCollection
Public ReadOnly Property Columns As GridViewColumnCollection
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.
GridViewColumn gvc3 = new GridViewColumn();
gvc3.DisplayMemberBinding = new Binding("EmployeeNumber");
gvc3.Header = "Employee No.";
gvc3.Width = 100;
myGridView.Columns.Add(gvc3);
Dim gvc3 As 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.