Here are the examples of the csharp api class System.Windows.Forms.DataGridView.InvalidateCell(System.Windows.Forms.DataGridViewCell) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.
4 Examples
0
1. Example
View licenseprivate void Invalidate() { if(DataGridView != null) { DataGridView.InvalidateCell(this); } }
0
2. Example
View licenseprotected override void OnMouseEnter(int rowIndex) { active = true; DataGridView.InvalidateCell(this); }
0
3. Example
View licenseprotected override void OnMouseLeave(int rowIndex) { active = false; DataGridView.InvalidateCell(this); }
0
4. Example
View licensepublic void ResetDropDown() { this.InvalidateDropDownButtonBounds(); this.HideDropDown(); if(this.DataGridView != null) this.DataGridView.InvalidateCell(this); }