Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Change Control Color
Message
 
À
22/05/2003 13:29:23
Information générale
Forum:
ASP.NET
Catégorie:
Formulaires
Divers
Thread ID:
00791338
Message ID:
00791781
Vues:
16
Try this:
private void tabControl1_MouseEnter(object sender, System.EventArgs e)
		{
			tabControl1.SelectedTab.ForeColor = Color.Red; 
			tabControl1.SelectedTab.BackColor = Color.White; 
		}

private void tabControl1_MouseLeave(object sender, System.EventArgs e)
		{
			tabControl1.SelectedTab.ForeColor = Color.Green; 
			tabControl1.SelectedTab.BackColor = Color.Silver; 
		}
>Thaks for replay jayes patel
>
>I have tried with button it work , but did't work with tabpages.
- Jayesh
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform