DataGrid.CanUserResizeColumns 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 or sets a value that indicates whether the user can adjust the width of columns by using the mouse.
public:
property bool CanUserResizeColumns { bool get(); void set(bool value); };
public bool CanUserResizeColumns { get; set; }
member this.CanUserResizeColumns : bool with get, set
Public Property CanUserResizeColumns As Boolean
Property Value
true
if the user can adjust the column width; otherwise, false
. The registered default is true
. For more information about what can influence the value, see DependencyProperty.
Remarks
This property does not affect whether column widths can be changed programmatically, such as by changing the DataGridColumn.Width property.
You can set this resize behavior for individual columns by setting the DataGridColumn.CanUserResize property. If the DataGridColumn.CanUserResize property and the DataGrid.CanUserResizeColumns property are both set, a value of false
takes precedence over a value of true
.