We have a grid where the bands are set up with AllowColSizing = AllowColSizing.Syncroized but when I perform auto resize on the column it only resizes to fit information contained in the top most band that is associated with that column header. Is there a way to have it include all syncronized bands to that column header?
Hello Derek,
You could use the 'AfterColPosChanged' event. Please let me know if it does not suit your needs.
Hi Derek,
Hm... well not really. There's no event for autosizing or double-clicking that particular area. But when the column is autosized, the AfterColPosChanged event will fire. So you could use that. It's a little inefficient, since your sizing will take place after the grid already sized the column, but I don't think it will be a big deal. You will need to prevent recursion, though, so you either need a flag or you have to use the EventManager to prevent the event from firing again.
Thanks for the reply Mike. Is there an event I can handle when the user double clicks on the sizing portion of a column to achieve this?
There's no PerformAutoSize method that will do this. But what you could do is use CalculateAutoSize on the column(s) instead. Basically, you would loop through each band and call CalculateAutoSize on each column in the same position and then use the biggest width you got back.