Hi Manuel
Thanks for contacting Syncfusion Support.
We have checked your query and prepared a sample to meet your requirement. In this sample, we have changed the cursor type as hand in Mouse move event of TabControlAdv and restore the cursor type as default in Mouse leave event of TabControlAdv. Please download the sample for the same from below location,
Code Example:
private void TabControlAdv1_MouseMove(object sender, MouseEventArgs e)
{
for (int i = 0; i < this.tabControlAdv1.TabCount; i++)
{
if (this.tabControlAdv1.GetTabRect(i).Contains(e.Location))
{
this.tabControlAdv1.Cursor = Cursors.Hand;
break;
}
else
{
this.tabControlAdv1.Cursor = Cursors.Default;
}
}
}
private void TabControlAdv1_MouseLeave(object sender, EventArgs e)
{
this.tabControlAdv1.Cursor = Cursors.Default;
} |
If we misunderstood your query please provide more details about your requirement. This would help us to provide solution at earliest.
Regards,
Durga S.