GridView.AllowsColumnReorder Property

Definition

Gets or sets whether columns in a GridView can be reordered by a drag-and-drop operation.

public:
 property bool AllowsColumnReorder { bool get(); void set(bool value); };
public bool AllowsColumnReorder { get; set; }
member this.AllowsColumnReorder : bool with get, set
Public Property AllowsColumnReorder As Boolean

Property Value

true if columns can be reordered; otherwise, false. The default value is true.

Examples

The following example shows how to set the AllowsColumnReorder property.

<GridView AllowsColumnReorder="true"
          ColumnHeaderToolTip="Employee Information">
</GridView>
GridView myGridView = new GridView();
myGridView.AllowsColumnReorder = true; 
myGridView.ColumnHeaderToolTip = "Employee Information";
Dim myGridView As New GridView()
myGridView.AllowsColumnReorder = True
myGridView.ColumnHeaderToolTip = "Employee Information"

Remarks

Dependency Property Information

Identifier Field AllowsColumnReorderProperty
Metadata properties set to true None

Applies to