When row height exceeds the height of the grid, user cannot scroll down to see the bottom half of the row and the tooltip is also not displayed in this case. Is there a way to limit row height not exceeding grid height?
Thanks,
Crystal.
You might be able to handle the grid's Resize event and change the property therein, although I don't know if it is too late at that point. Alternatively, you might want to consider using the MaximumSize.Height property of the form to prevent the height from getting too small to show one row.
Thanks Brain. It's possible to display very long text in our grid. Our grid size is reasonable.
I am thinking of using RowSizingAutoMaxLines, is there a way to convert height into lines? I also noticed that after I set RowSizingAutoMaxLines, the last line was cut in the middle in a row.