I am Create Custom control of Button (inheritance button class). File name is CustomSaveButton. I am create new event in button name is btnSaveClick. Like.
[Browsable(true)]
public new event EventHandler btnSaveClick
{
add
{
btnSave.Click += value;
}
remove
{
btnSave.Click -= value;
}
}
private virtual void btnSave_Click(object sender, EventArgs e)
{
MessageBox.Show("User Control")
}
Now I am use this control in Windows Form and Create btnSave Event and write
MessageBox.Show("Forms control")
my output is first show "User control" then "Forms Control". But I want to Show First "forms control" then User Contorl".
plz, give me answer.