35 references to Bounds
System.Workflow.Activities (35)
Designers\StateDesigner.CommentLayoutGlyph.cs (1)
41
Rectangle bounds = _layout.
Bounds
;
Designers\StateDesigner.cs (6)
406
return _titleBarLayout.ImageLayout.
Bounds
;
417
return _titleBarLayout.TextLayout.
Bounds
;
708
Rectangle bounds = layout.
Bounds
;
1413
int minimumY = _eventHandlersLayout.
Bounds
.Bottom + DefaultStateDesignerAutoLayoutDistance;
1473
int maximumY = _eventHandlersLayout.
Bounds
.Bottom + DefaultStateDesignerAutoLayoutDistance;
1650
int eventHandlersLayoutBottom = this._statesLayout.EventHandlersLayout.
Bounds
.Bottom;
Designers\StateDesigner.Layouts.cs (27)
343
parentView.InvalidateLogicalRectangle(this.
Bounds
);
349
if (this.
Bounds
.Contains(point))
363
if (layout.
Bounds
.Contains(x, y))
369
if (this.
Bounds
.Contains(x, y))
408
return StateMachineDesignerPaint.TrimRectangle(rectangle,
Bounds
);
417
return StateMachineDesignerPaint.TrimRectangle(rectangle,
Bounds
);
499
if (this.
Bounds
.Contains(point))
511
Rectangle layoutBounds = this.
Bounds
;
522
Rectangle layoutBounds = this.
Bounds
;
710
Rectangle bounds = this.
Bounds
;
809
layout.
Bounds
.Right,
865
ActivityDesignerPaint.DrawText(graphics, font, text, this.
Bounds
, StringAlignment.Near, ambientTheme.TextQuality, designerTheme.ForegroundBrush);
906
ActivityDesignerPaint.DrawImage(graphics, image, this.
Bounds
, DesignerContentAlignment.Fill);
993
Rectangle rectangle = this.
Bounds
;
995
Brush backgroundBrush = designerTheme.GetBackgroundBrush(this.
Bounds
);
1042
int minX = _imageLayout.
Bounds
.Right + Padding;
1049
if ((xPos + maxStringWidth) > (this.
Bounds
.Right - margin.Width))
1050
maxStringWidth = (this.
Bounds
.Right - margin.Width) - xPos;
1183
int y = _titleBarLayout.
Bounds
.Bottom + 1;
1191
GraphicsPath path = StateMachineDesignerPaint.GetDesignerPath(this.ActivityDesigner, this.
Bounds
, designerTheme);
1192
Brush backgroundBrush = designerTheme.GetBackgroundBrush(this.
Bounds
);
1203
Point location = new Point(this.Location.X, _titleBarLayout.
Bounds
.Bottom);
1204
Size size = new Size(this.Size.Width, this.Size.Height - _titleBarLayout.
Bounds
.Height);
1362
Rectangle bounds = this.
Bounds
;
1381
origin.Y = _designerLayout.
Bounds
.Bottom + ambientTheme.SelectionSize.Height + ActiveDesignerPadding;
1392
GraphicsPath path = StateMachineDesignerPaint.GetDesignerPath(this.ActivityDesigner, this.
Bounds
, designerTheme);
1393
Brush backgroundBrush = designerTheme.GetBackgroundBrush(this.
Bounds
);
Designers\StateDesigner.LayoutSelectionGlyph.cs (1)
59
return _layout.
Bounds
;