public LeftBlock(LeftBlock c)
 {
     InitializeComponent();
     this.leftBlock.Height = c.leftBlock.Height;
     this.leftBlock.Width  = c.leftBlock.Height;
     this.leftBlock.Fill   = c.leftBlock.Fill;
 }
 public LeftBlock(LeftBlock c, int id)
 {
     InitializeComponent();
     this.leftBlock.Height = c.leftBlock.Height;
     this.leftBlock.Width  = c.leftBlock.Height;
     this.leftBlock.Fill   = c.leftBlock.Fill;
     this.id = id;
 }