本帖最后由 detecyang 于 2010-01-21 22:25:05 编辑

解决方案 »

  1.   

    http://space.itpub.net/14325734/viewspace-416234
      

  2.   

    在你继承于button的类里:      
      protected override void OnPaint(PaintEventArgs e)
            {
                base.OnPaint(e);
                this.FlatStyle = FlatStyle.Flat;
                this.BackColor = this.Parent.BackColor;
                this.FlatAppearance.BorderColor = this.Parent.BackColor;
            }
    注意使用时要确保你的控件存在有放到一个容器中,否则 this.Parent会找不到(废话一句)