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