I would like to freeze a DataGridTextColumn in WPF but it looks like there is not a property for that in that class specifically. However, looking at the source for the WPFToolkit, there is a IsFrozen in DataGridColumn which is the parent of DataGridBoundColumn, which is the parent of DataGridTextColumn. So...why isn't that property available?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
I believe this property is not available because it's a read only. Since frozen columns are always the leftmost columns in display order you can use datagrid's FrozenColumnCount property to freeze whatever number of columns you need. You can set it up in xaml or chage it in you code. See documentation for more details here |
|||
|