public UIElement CloneDesignBox() { var newRectBox = new DesignRectBox(this.Width, this.Height); newRectBox.BackColor = this.BackColor; return(newRectBox); }
public void AddNewBox(int x, int y, int w, int h) { //add new user box var box1 = new DesignRectBox(w, h); box1.BackColor = Color.Red; box1.SetLocation(x, y); SetupActiveBoxProperties(box1); viewport.AddContent(box1); userBoxes.Add(box1); }
public UIElement CloneDesignBox() { var newRectBox = new DesignRectBox(this.Width, this.Height); newRectBox.BackColor = this.BackColor; return newRectBox; }