Delphi TStringGrid Flicker
问题 I am adding multiple rows to a string grid from a CSV file @ runtime, However the StringGrid seems to flicker lots when it is being upadated, I presumed there would be a beginupadate / Endupdate command to stop this. However I cannot find it. Is there another way to stop the flicker when the grid id being updated. Colin 回答1: Better late than never... I use WM_SETREDRAW. For example: ... StringGrid1.Perform(WM_SETREDRAW, 0, 0); try // StringGrid1 is populated with the data here finally