BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
bool inGrid = false; private void gridControl1_Click(object sender, EventArgs e) { if(!inGrid) { Syncfusion.Drawing.ActiveXSnapshot.FakeLeftMouseClick(this.gridControl1, this.gridControl1.PointToClient(Control.MousePosition)); inGrid = true; } } private void InnerForm_Leave(object sender, EventArgs e) { inGrid = false; }
>bool inGrid = false; >private void gridControl1_Click(object sender, EventArgs e) >{ > if(!inGrid) > { > Syncfusion.Drawing.ActiveXSnapshot.FakeLeftMouseClick(this.gridControl1, this.gridControl1.PointToClient(Control.MousePosition)); > inGrid = true; > } >} > >private void InnerForm_Leave(object sender, EventArgs e) >{ > inGrid = false; >} >
this.gridControl1.Model.Options.SelectCellsMouseButtonsMask = MouseButtons.Left;
The fake click was the only work-around I could come up with.
The next release will be a release candidate for 2.0. Right now, it looks like it will be out in about a week or so.
>this.gridControl1.Model.Options.SelectCellsMouseButtonsMask = MouseButtons.Left;
>
>
>The fake click was the only work-around I could come up with.
>
>The next release will be a release candidate for 2.0. Right now, it looks like it will be out in about a week or so.