This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class CustomDataGridView: DataGridView | |
| { | |
| public CustomDataGridView() | |
| { | |
| //With this instruction we enable the Double Buffer to improve the performance of DataGridView | |
| DoubleBuffered = true; | |
| } | |
| } |
NewerOlder