Skip to content

Commit 3d87edf

Browse files
How to change the column resizing cursor position in WPF DataGrid(SfDataGrid)?
How to change the column resizing cursor position in WPF DataGrid(SfDataGrid)?
1 parent 6671408 commit 3d87edf

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

README.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,14 @@
1-
# how-to-change-the-column-resizing-cursor-position-in-wpf-data-grid
2-
How to change the column resizing cursor position in WPF DataGrid(SfDataGrid)?
1+
# How to change the column resizing cursor position in WPF DataGrid(SfDataGrid)?
2+
3+
## About the sample
4+
5+
This example illustrates how to change the column resizing cursor position in WPF DataGrid
6+
7+
By default, resizing cursor in SfDataGrid is west to east. If you change the flow direction of SfDataGrid, you need to change the resizing cursor by using SfDataGrid.ColumnResizingController.ResizingCursor.
8+
9+
```c#
10+
this.dataGrid.ColumnResizingController.ResizingCursor = Cursors.SizeNS;
11+
```
12+
13+
## Requirements to run the demo
14+
Visual Studio 2015 and above versions

0 commit comments

Comments
 (0)