I have a Windows Form app with an ultragrid. I'm trying to capture the event when a column is resized in my Grid. I establish the event handler as:
myGrid.AfterRowLayoutItemResized +=
new AfterRowLayoutItemResizedEventHandler(myGrid_AfterRowLayoutItemResized);
I then defined an method as:
My code...
}
However, when I run the app and resize a column, the method is not called. Am I missing something? Is there some reason that this event wouldn't fire?
Thanks,
Steve Weeks
Hi Steve,
If you are not using Row Layout for your column arrangement, then there are two events that you can use: the BeforeColPosChanged and the AfterColPosChanged events.
Magued