BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
this.datagrid.CellRenderers.Remove("TemplateExt");
this.datagrid.CellRenderers.Add("TemplateExt", new GridCellTemplateExt());
public class GridCellTemplateExt : GridCellTemplateRenderer
{
protected override void SetFocus(FrameworkElement uiElement, bool needToFocus)
{
if (!needToFocus)
DataGrid.Focus();
}
} |