1 write to items
System.Workflow.ComponentModel (1)
AuthoringOM\Design\DesignerWidgets.cs (1)
591this.items = new ItemList<ItemInfo>(this);
18 references to items
System.Workflow.ComponentModel (18)
AuthoringOM\Design\DesignerWidgets.cs (18)
592this.items.ListChanging += new ItemListChangeEventHandler<ItemInfo>(OnItemsChanging); 593this.items.ListChanged += new ItemListChangeEventHandler<ItemInfo>(OnItemsChanged); 602return this.items; 690if (this.items.Count >= visibleItems && ((this.items.Count - newPosition) < visibleItems)) 691newPosition = this.items.Count - visibleItems; 693if (newPosition >= 0 && newPosition <= Math.Max(this.items.Count - visibleItems + 1, 0)) 706int itemIndex = this.items.IndexOf(itemInfo); 734foreach (ItemInfo item in this.items) 754reqdSize.Width = (this.items.Count * this.itemSize.Width) + ((this.items.Count + 1) * this.margin.Width); 760reqdSize.Height = (this.items.Count * this.itemSize.Height) + ((this.items.Count + 1) * this.margin.Height); 894int index = this.items.IndexOf(this.selectedItem); 913int nextIndex = this.items.IndexOf(e.RemovedItems[0]); 914nextIndex += (nextIndex < this.items.Count - 1) ? 1 : -1; 915SelectedItem = (nextIndex >= 0 && nextIndex < this.items.Count) ? this.items[nextIndex] : null;