1 write to tabItemList
System.Workflow.ComponentModel (1)
AuthoringOM\Design\DesignerWidgets.cs (1)
1704
this.
tabItemList
= new ItemList<ItemInfo>(this);
35 references to tabItemList
System.Workflow.ComponentModel (35)
AuthoringOM\Design\DesignerWidgets.cs (35)
1705
this.
tabItemList
.ListChanging += new ItemListChangeEventHandler<ItemInfo>(OnItemsChanging);
1706
this.
tabItemList
.ListChanged += new ItemListChangeEventHandler<ItemInfo>(OnItemsChanged);
1747
return this.
tabItemList
;
1760
if (value < 0 || value > this.
tabItemList
.Count)
1763
ItemInfo previousTab = (this.selectedTab >= 0 && this.selectedTab < this.
tabItemList
.Count) ? this.
tabItemList
[this.selectedTab] : null;
1764
ItemInfo currentTab = this.
tabItemList
[value];
1782
for (int i = 0; i < this.
tabItemList
.Count; i++)
1795
if (this.
tabItemList
.Count == this.drawItems.Length)
1797
for (int i = 0; i < this.
tabItemList
.Count; i++)
1799
ItemInfo tabInfo = this.
tabItemList
[i];
1830
foreach (ItemInfo tabItemInfo in this.
tabItemList
)
1847
foreach (ItemInfo tabItemInfo in this.
tabItemList
)
1873
if (this.drawItems.Length != this.
tabItemList
.Count)
1890
ItemInfo tabItem = this.
tabItemList
[tabItemIndex];
1937
graphics.DrawString(this.
tabItemList
[tabItemIndex].Text, Font, SystemBrushes.ControlText, new Rectangle(0, 0, bitmap.Width, bitmap.Height), stringFormat);
1953
this.drawItems = new DrawTabItemStruct[this.
tabItemList
.Count];
1965
for (int i = 0; i < this.
tabItemList
.Count; i++)
1968
ItemInfo itemInfo = this.
tabItemList
[i];
2009
int itemSizeDecrease = (int)Math.Ceiling(((double)(offset - maxTotalTabItemSize)) / (double)Math.Max(1, this.
tabItemList
.Count));
2013
DrawTabItemStruct lastItemStruct = this.drawItems[this.
tabItemList
.Count - 1];
2016
itemSizeDecrease += (int)Math.Ceiling(((double)(this.reqTabItemSize - lastItemWidth)) / (double)Math.Max(1, this.
tabItemList
.Count));
2018
for (int i = 0; i < this.
tabItemList
.Count; i++)
2024
if ((i == this.
tabItemList
.Count - 1) && this.drawItems[i].TabItemRectangle.Width < this.reqTabItemSize)
2031
if ((i == this.
tabItemList
.Count - 1) && this.drawItems[i].TabItemRectangle.Height < this.reqTabItemSize)
2049
if (this.
tabItemList
.Contains(item))
2057
if (this.
tabItemList
.Count == 0)
2059
else if (this.selectedTab > this.
tabItemList
.Count - 1)
2060
SelectedTab = this.
tabItemList
.Count - 1;
2068
int index = this.
tabItemList
.IndexOf(tabItemInfo);
2072
if (this.drawItems.Length == this.
tabItemList
.Count)
2080
int index = this.
tabItemList
.IndexOf(tabItemInfo);
2085
if (tabItemInfo.Image != null && this.drawItems.Length == this.
tabItemList
.Count)
2097
int index = this.
tabItemList
.IndexOf(tabItemInfo);
2102
if (tabItemInfo.Text != null && this.drawItems.Length == this.
tabItemList
.Count)