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