How can I make the first column of a datagrid be anchored by horizontal scrolling, which always remains immobile, thank you very much!
How can I make the first column of a datagrid be anchored by horizontal scrolling, which always remains immobile, thank you very much!
To freeze the column and not move when scrolling, use the FrozenColumnCount property, it is applied like this:
<DataGrid FrozenColumnCount ="1" />
Greetings.