BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
private void Form1_Load(object sender, System.EventArgs e) { this.gridControl1.ControllerOptions = GridControllerOptions.All; this.gridControl1.ActivateCurrentCellBehavior = GridCellActivateAction.ClickOnCell; this.gridControl1.AllowSelection = GridSelectionFlags.None; this.gridControl1[1,1].Text = "Some Text"; this.gridControl1[2,2].Text = "Some Text"; }With such a simple project, things seem to work as expected. If you try this, do things work for you? What other settings/events/overrides are you using that might affect this? Can you post a sample showing the problem? Or, maybe submit a Direct Trac incident and post a project there. -Clay
Syncfusion.Drawing.BrushInfo whiteBrushInfo; .... whiteBrushInfo = new Syncfusion.Drawing.BrushInfo(Color.White); private void gridControl1_PrepareViewStyleInfo(object sender, GridPrepareViewStyleInfoEventArgs e) { GridCurrentCell cc = this.gridControl1.CurrentCell; if(e.ColIndex == cc.ColIndex && e.RowIndex == cc.RowIndex && cc.IsEditing) { if(e.Style.Interior.BackColor.A > 0) e.Style.Interior = whiteBrushInfo; } }