1 write to itemStrip
System.Workflow.ComponentModel (1)
AuthoringOM\Design\DesignerWidgets.cs (1)
280
this.
itemStrip
= CreateItemStrip(serviceProvider, orientation, itemSize, margin);
39 references to itemStrip
System.Workflow.ComponentModel (39)
AuthoringOM\Design\DesignerWidgets.cs (39)
143
base.
itemStrip
.Draw(graphics);
145
if (base.
itemStrip
.ScrollPosition > 0)
148
if (base.
itemStrip
.ScrollPosition + base.
itemStrip
.MaxVisibleItems < base.
itemStrip
.Items.Count)
160
buttonBounds.Inflate(-base.
itemStrip
.ItemSize.Width / 6, -base.
itemStrip
.ItemSize.Height / 4);
162
buttonBounds.Inflate(-base.
itemStrip
.ItemSize.Width / 4, -base.
itemStrip
.ItemSize.Height / 6);
281
this.
itemStrip
.ScrollPositionChanged += new EventHandler(OnScrollPositionChanged);
289
return this.
itemStrip
.Items;
297
return this.
itemStrip
.SelectedItem;
302
this.
itemStrip
.SelectedItem = value;
310
this.
itemStrip
.SelectionChanged += value;
315
this.
itemStrip
.SelectionChanged -= value;
336
this.
itemStrip
.Location = new Point(leftScrollButtonBounds.Right, leftScrollButtonBounds.Top);
338
this.
itemStrip
.Location = new Point(leftScrollButtonBounds.Left, leftScrollButtonBounds.Bottom);
361
Size reqdSize = this.
itemStrip
.RequiredSize;
368
if (this.margin.Width + this.
itemStrip
.ItemSize.Width > 0)
369
availableSize -= (availableSize % (this.margin.Width + this.
itemStrip
.ItemSize.Width));
370
this.
itemStrip
.Size = new Size(Math.Min(availableSize, reqdSize.Width), Math.Min(this.bounds.Height, reqdSize.Height));
376
if (this.margin.Height + this.
itemStrip
.ItemSize.Height > 0)
377
availableSize -= (availableSize % (this.margin.Height + this.
itemStrip
.ItemSize.Height));
378
this.
itemStrip
.Size = new Size(Math.Min(this.bounds.Width, reqdSize.Width), Math.Min(availableSize, reqdSize.Height));
420
this.
itemStrip
.OnMouseEnter(e);
426
if (this.
itemStrip
.Bounds.Contains(mousePoint))
428
this.
itemStrip
.OnMouseDown(e);
437
this.
itemStrip
.ScrollPosition = this.
itemStrip
.ScrollPosition + incr;
447
this.
itemStrip
.OnMouseMove(e);
456
if (this.
itemStrip
.Bounds.Contains(mousePoint))
457
this.
itemStrip
.OnMouseUp(e);
464
this.
itemStrip
.OnMouseLeave();
487
buttonRectangle.X = this.bounds.X + this.margin.Width + buttonRectangle.Size.Width + this.
itemStrip
.Size.Width;
497
buttonRectangle.Y = this.bounds.Y + this.margin.Height + buttonRectangle.Size.Height + this.
itemStrip
.Size.Height;
508
if (this.
itemStrip
.ScrollPosition > 0)
516
if (this.
itemStrip
.ScrollPosition + this.
itemStrip
.MaxVisibleItems < this.
itemStrip
.Items.Count)