开发者

Inheritance of button

I designed a button

How do I inherit the rest of this button?

Inheritance of button


Does this method of inheritance is true?

mycode :

    public class MyButton : Button
{

    public MyButton()
        : base()
    {
        // set whatever styling properties needed here
        this.ForeColor = Color.Blue;
        this.Click += new EventHandler(MyButton_Click);
        this.BackColor = Color.Red;
    }

    void MyButton_Click(object sender, EventArgs e)
    {
        MessageBox.Show("yes");
    }
}开发者_Python百科

Why not change the background color?

Inheritance of button


All properties are subject to change

Except the background color

Is this a normal thing

No solution?


You can create a new class, subclass the standard Button, and make your style adjustments in the constructor. Once that's done, rebuild your project, and your new component should appear in the Toolbox in the top section. Use it instead of the standard Button and you should be good to go.

public class MyButton : Button
{
    public MyButton() : base()
    {
        // set whatever styling properties needed here
        ForeColor = Color.Red;
    }
}


I'm assumimg what you want is: defining 10 buttons, and styling(set several properties of) button1, you want the rest 9 buttons the same as button1. This is not inheritance in C#. To meet your requirement, you can get those 10 buttons into one list/collection/array/etc...one way to get the buttons probably looks like:

var buttons = container.Controls.OfType<Button>();

And then loop the list to set properties:

foreach(var button in buttons)
{
   //set the common properties.
}


You can use this code:

this.BackColor = Color.Red;
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜