Is there a way to turn off column resizing from the cells so that the users can only resize from the header?
Thanks!
Bump.
I'm interested in doing this too, any ideas on how?
Also I'm interested to do this. Is possible to limit the resizing at only the header?
Thanks for reply.
Hello,
Currently there is no direct way of doing this, but you can turn on/off the Field Resizing feature depending on where your mouse is. For example, you can use the following code to allow resizing only if the mouse is over the Header Record:
1. Register MouseEnter event for the DataRecordPresenter element
EventManager.RegisterClassHandler(typeof(DataRecordPresenter), DataRecordPresenter.MouseEnterEvent, new MouseEventHandler(d_MouseEnter));