Click here to Skip to main content
15,883,901 members
Please Sign up or sign in to vote.
3.00/5 (1 vote)
See more:
Hi All,

I was trying to build a custom button control.

I want to change it's Visible Property. I declared the public bool variable and Implemented that with get-set. Which is showing in Property Box of UserControl placed on Form.

But It is not showing any effect while I change property.

I am sure that I am missing something. What is it? Please let me know.

Regards!
Aman
Posted

1 solution

try this
C#
public bool BtnVisibility
        {
            get
            {
                return this.button.Visible;
            }
            set
            {
                this.button.Visible = value;
            }

        }
 
Share this answer
 
Comments
Aman4.net 24-Apr-11 7:11am    
Thanx Man! I just missed it.
ambarishtv 24-Apr-11 7:19am    
pls click accept solution button
Venkatesh Mookkan 24-Apr-11 7:58am    
Good Call!

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900