用户控件抛出一个属性

private bool IsVisibel = true;

        [Category("行为"), Description("是否显示按钮栏")]

        public bool VisibleButton

        {

            get

            {

                return IsVisibel;

            }

            set

            {

                IsVisibel = value;

                this.panel1.Visible = IsVisibel;

                base.Refresh();

            }

        }

你可能感兴趣的:(C#)