Customize ToolStripMenuItem

Posted by Lu Lu on Stack Overflow See other posts from Stack Overflow or by Lu Lu
Published on 2010-04-12T03:46:12Z Indexed on 2010/04/12 3:53 UTC
Read the original article Hit count: 494

Filed under:
|

Hello everyone, I want to customize ToolStripMenuItem by overriding OnPaint function. This is a MyToolStripMenuItem:

public class MyToolStripMenuItem : ToolStripMenuItem
{
    public MyToolStripMenuItem()
        :base()
    {
    }

    public MyToolStripMenuItem(string t)
        :base(t)
    {
    }

    protected override void OnPaint(PaintEventArgs e)
    {
        Graphics g = e.Graphics;
        Rectangle r = this.Bounds;
        g.FillRectangle(Brushes.Blue, r);
        g.DrawString(this.Text, this.Font, Brushes.Red, r);
    }
}

In my code, I will fill a blue color in item's bound. Now, I will create a list of items on menustrip:

MyToolStripMenuItem1

|___MyToolStripMenuItem2

|___MyToolStripMenuItem3

I don't know why MyToolStripMenuItem3 don't have a blue background.

This is my source code:

http://www.mediafire.com/?2qhmjzzfzzn

Please help me. Thanks.

© Stack Overflow or respective owner

Related posts about c#

Related posts about .NET