Anchoring column when doing horizontal scrolling in wpf, XAML?

0

How can I make the first column of a datagrid be anchored by horizontal scrolling, which always remains immobile, thank you very much!

    
asked by Julian Vasquez Perez 28.01.2017 в 14:02
source

1 answer

0

To freeze the column and not move when scrolling, use the FrozenColumnCount property, it is applied like this:

<DataGrid FrozenColumnCount ="1" />

Greetings.

    
answered by 28.01.2017 / 15:52
source