Exemplo n.º 1
0
        public void updateData(DrawItem _item)
        {
            _rectangle.Opacity = 0.5;
            _rectangle.Color   = _item.color;

            if (_item.box)
            {
                _rectangle.Location = Rectangle.FromLTRB(_item.rect.left, _item.rect.top, _item.rect.right, _item.rect.bottom);
            }
            else
            {
                _rectangle.Location = Rectangle.FromLTRB(_item.rect.left + 5, _item.rect.top + verticalPadding, _item.rect.left + 5, _item.rect.bottom - verticalPadding);
            }
        }
Exemplo n.º 2
0
 public void DrawRectangle(DrawItem _item)
 {
     updateData(_item);
     this._rectangle.Visible = true;
 }
Exemplo n.º 3
0
 public Highlighter(DrawItem _item)
 {
     hightlights.Add(this);
     _rectangle.Color = Color.Red;
     updateData(_item);
 }
Exemplo n.º 4
0
 public DrawItem(DrawItem clone)
 {
     box   = clone.box;
     rect  = clone.rect;
     color = clone.color;
 }