1 write to items
System.Workflow.ComponentModel (1)
AuthoringOM\Design\DesignerWidgets.cs (1)
2437
this.
items
= new ItemList<ItemInfo>(this);
29 references to items
System.Workflow.ComponentModel (29)
AuthoringOM\Design\DesignerWidgets.cs (29)
2438
this.
items
.ListChanging += new ItemListChangeEventHandler<ItemInfo>(OnItemsChanging);
2439
this.
items
.ListChanged += new ItemListChangeEventHandler<ItemInfo>(OnItemsChanged);
2448
return this.
items
;
2517
if (this.
items
.Count == 0 && this.parentDesigner.Activity != null)
2530
Rectangle[] rectangles = new Rectangle[this.
items
.Count + 1];
2533
int maxItems = Math.Min(this.
items
.Count - this.scrollMarker, VisibleItemCount) + 1;
2550
int itemIndex = this.
items
.IndexOf(itemInfo);
2606
for (int itemIndex = this.scrollMarker; itemIndex < this.
items
.Count; itemIndex++)
2608
if (GetItemBounds(this.
items
[itemIndex]).Contains(point))
2609
return this.
items
[itemIndex];
2635
int index = this.
items
.IndexOf(ActiveItem) + incr;
2636
index = (index >= this.
items
.Count) ? 0 : (index < 0) ? this.
items
.Count - 1 : index;
2637
ActiveItem = this.
items
[index];
2712
for (int itemIndex = this.scrollMarker; itemIndex < this.
items
.Count && itemIndex < (this.scrollMarker + VisibleItemCount); itemIndex++)
2714
Rectangle itemRectangle = GetItemBounds(this.
items
[itemIndex]);
2728
Image itemImage = this.
items
[itemIndex].Image;
2731
Activity activity = this.
items
[itemIndex].UserData[DesignerUserDataKeys.Activity] as Activity;
2746
if (itemIndex == this.
items
.IndexOf(ActiveItem))
2761
else if (this.
items
.Count == 0 && this.helpText.Length > 0)
2781
int index = this.
items
.IndexOf(ActiveItem);
2786
if (this.
items
.Count >= VisibleItemCount && ((this.
items
.Count - this.scrollMarker) < VisibleItemCount))
2787
newMarker = this.
items
.Count - VisibleItemCount;
2789
if (newMarker >= 0 && newMarker <= Math.Max(this.
items
.Count - VisibleItemCount + 1, 0))
2861
int nextIndex = this.
items
.IndexOf(e.RemovedItems[0]);
2862
nextIndex += (nextIndex < this.
items
.Count - 1) ? 1 : -1;
2863
ActiveItem = (nextIndex >= 0 && nextIndex < this.
items
.Count) ? this.
items
[nextIndex] : null;