Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Painting after all custom painting has been made
Message
De
29/08/2005 08:58:40
 
Information générale
Forum:
ASP.NET
Catégorie:
Formulaires
Divers
Thread ID:
01039477
Message ID:
01044743
Vues:
12
sure, here it is:

protected override void OnPaint(PaintEventArgs e)
{
base.OnPaint(e);
Graphics g = e.Graphics;

using (Pen pen = new Pen(Color.FromArgb(255, 132, 132, 132), 12)
{
g.DrawArc(pen, myComponent.Location.X + 22, myComponent.Location.Y + 22
, myComponent.Width + 44, myComponent.Height + 44, -90, -90);
}
}
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform