Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.