AD
Administrator
Syncfusion Team
January 23, 2007 04:00 PM UTC
Hi Annas,
You can handle the Deactivated event and get the active control using the Form.ActiveControl property. Here is a code snippet.
private void gridDataBoundGrid1_Deactivated(object sender, System.EventArgs e)
{
Console.WriteLine("Active Control Name is : " + this.ActiveControl.Name);
}
Best Regards,
Haneef