24 references to
System.Workflow.ComponentModel (24)
AuthoringOM\Design\DesignerWidgets.cs (20)
915SelectedItem = (nextIndex >= 0 && nextIndex < this.items.Count) ? this.items[nextIndex] : null; 1181selectedItem = this.enabledItems[i]; 1243if (this.enabledItems[i].Image != null) 1246Size imageSize = this.enabledItems[i].Image.Size; 1257graphics.DrawImage(this.enabledItems[i].Image, new Rectangle(imagePoint, imageSize), new Rectangle(Point.Empty, imageSize), GraphicsUnit.Pixel); 1269string descriptionString = this.enabledItems[i].Text; 1365get { return (this.activeIndex > -1) ? this.enabledItems[this.activeIndex] : null; } 1763ItemInfo previousTab = (this.selectedTab >= 0 && this.selectedTab < this.tabItemList.Count) ? this.tabItemList[this.selectedTab] : null; 1764ItemInfo currentTab = this.tabItemList[value]; 1799ItemInfo tabInfo = this.tabItemList[i]; 1890ItemInfo tabItem = this.tabItemList[tabItemIndex]; 1937graphics.DrawString(this.tabItemList[tabItemIndex].Text, Font, SystemBrushes.ControlText, new Rectangle(0, 0, bitmap.Width, bitmap.Height), stringFormat); 1968ItemInfo itemInfo = this.tabItemList[i]; 2608if (GetItemBounds(this.items[itemIndex]).Contains(point)) 2609return this.items[itemIndex]; 2637ActiveItem = this.items[index]; 2714Rectangle itemRectangle = GetItemBounds(this.items[itemIndex]); 2728Image itemImage = this.items[itemIndex].Image; 2731Activity activity = this.items[itemIndex].UserData[DesignerUserDataKeys.Activity] as Activity; 2863ActiveItem = (nextIndex >= 0 && nextIndex < this.items.Count) ? this.items[nextIndex] : null;
AuthoringOM\Design\MessageFilters\DynamicActionMessageFilter.cs (3)
540ActionButton button = this.buttons[i]; 557Image buttonImage = this.buttons[i].StateImages[(int)this.buttons[i].State];
AuthoringOM\ItemList.cs (1)
401array.SetValue(this[loop], loop + index);