BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
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();
}
} |