ToolStripButton

Résolu
cs_cadeau Messages postés 9 Date d'inscription mardi 31 décembre 2002 Statut Membre Dernière intervention 23 janvier 2009 - 23 janv. 2009 à 20:38
Lutinore Messages postés 3245 Date d'inscription lundi 25 avril 2005 Statut Membre Dernière intervention 27 octobre 2012 - 24 janv. 2009 à 14:46
Je développe sous visual studio 2005. Ma question concerne la propriété "Backcolor" d'un contrôle ToolStripButton, propriété "DisplayStyle = Text : comment peut-on modifier cette propriété pendant l'exécution du programme .

1 réponse

Lutinore Messages postés 3245 Date d'inscription lundi 25 avril 2005 Statut Membre Dernière intervention 27 octobre 2012 41
24 janv. 2009 à 14:46
Salut,

public Form1( )
{
    InitializeComponent( );



    ToolStripButton b = new ToolStripButton( );
    b.Text = "Click";
    b.Click += delegate
    {
        b.BackColor = Color.Red;
    };



    ToolStrip ts = new ToolStrip( );
    ts.Parent = this;
    ts.Dock = DockStyle.Top;
    ts.Items.Add( b );
}
3
Rejoignez-nous