Résolu PROBLEME CHANGEMENT DE COULEUR LABEL

Statut
N'est pas ouverte pour d'autres réponses.

KSS57-OFFICIEL

C#/C++ Developer
Premium
Inscription
7 Juillet 2013
Messages
1 883
Réactions
365
Points
5 148
RGCoins
0
Bonjour :RG:,

J'ai coder un changement de couleur automatique

Voici le code du Timer :

Random random = new Random();
int alpha = random.Next(0, 0xff);
int red = random.Next(0, 0xff);
int green = random.Next(0, 0xff);
int blue = random.Next(0, 0xff);
this.flatLabel1.ForeColor = Color.FromArgb(alpha, red, green, blue);

Les couleur change bien , mes j'aimerais quelle ne change pas instantanée
Qui a une idée ? @DEVR0 , @Baptiste @Krytøx | RG
 
Statut
N'est pas ouverte pour d'autres réponses.
Retour
Haut