1 instantiation of StatusBarPanel
System.Windows.Forms (1)
winforms\Managed\System\WinForms\StatusBar.cs (1)
1353StatusBarPanel panel = new StatusBarPanel();
69 references to StatusBarPanel
System.Windows.Forms (69)
winforms\Managed\System\WinForms\StatusBar.cs (53)
592StatusBarPanel panel = null; 611panel = (StatusBarPanel) this.panels[i]; 621panel = (StatusBarPanel) this.panels[i]; 656StatusBarPanel[] panelCopy = new StatusBarPanel[panelsCollection.Count]; 660foreach(StatusBarPanel p in panelCopy) { 790StatusBarPanel panel = null; 802panel = (StatusBarPanel) this.panels[i]; 824StatusBarPanel sbp = (StatusBarPanel) this.panels[i]; 846StatusBarPanel sbp = (StatusBarPanel) panels[i]; 880StatusBarPanel panel = null; 883StatusBarPanel[] pArray = new StatusBarPanel[this.panels.Count]; 887panel = (StatusBarPanel) this.panels[i]; 989internal void UpdateTooltip(StatusBarPanel panel) { 1019((StatusBarPanel)panels[i]).Index = i; 1035StatusBarPanel panel = (StatusBarPanel) 1060StatusBarPanel panel = (StatusBarPanel) panels[i]; 1091StatusBarPanel panel = (StatusBarPanel) panels[index]; 1224public virtual StatusBarPanel this[int index] { 1226return(StatusBarPanel)owner.panels[index]; 1244StatusBarPanel oldPanel = (StatusBarPanel) owner.panels[index]; 1267if (value is StatusBarPanel) { 1268this[index] = (StatusBarPanel)value; 1279public virtual StatusBarPanel this[string key] { 1352public virtual StatusBarPanel Add(string text) { 1353StatusBarPanel panel = new StatusBarPanel(); 1365public virtual int Add(StatusBarPanel value) { 1374if (value is StatusBarPanel) { 1375return Add((StatusBarPanel)value); 1386public virtual void AddRange(StatusBarPanel[] panels) { 1390foreach(StatusBarPanel panel in panels) { 1399public bool Contains(StatusBarPanel panel) { 1406if (panel is StatusBarPanel) { 1407return Contains((StatusBarPanel)panel); 1427public int IndexOf(StatusBarPanel panel) { 1439if (panel is StatusBarPanel) { 1440return IndexOf((StatusBarPanel)panel); 1485public virtual void Insert(int index, StatusBarPanel value) { 1521if (value is StatusBarPanel) { 1522Insert(index, (StatusBarPanel)value); 1556public virtual void Remove(StatusBarPanel value) { 1572if (value is StatusBarPanel) { 1573Remove((StatusBarPanel)value); 1591StatusBarPanel panel = (StatusBarPanel)owner.panels[index]; 1633return new StatusBarPanel[0].GetEnumerator();
winforms\Managed\System\WinForms\StatusBarDrawItemEvent.cs (5)
23readonly StatusBarPanel panel; 33DrawItemState itemState, StatusBarPanel panel) : base(g, font, r, itemId, itemState) { 45DrawItemState itemState, StatusBarPanel panel, Color foreColor, Color backColor) : base(g, font, r, itemId, itemState, foreColor, backColor) { 52/// Specifies the <see cref='System.Windows.Forms.StatusBarPanel'/> 57public StatusBarPanel Panel {
winforms\Managed\System\WinForms\StatusBarPanel.cs (7)
67/// Initializes a new default instance of the <see cref='System.Windows.Forms.StatusBarPanel'/> class. 76/// Gets or sets the <see cref='System.Windows.Forms.StatusBarPanel.Alignment'/> 107/// Gets or sets the <see cref='System.Windows.Forms.StatusBarPanel.AutoSize'/> 139/// Gets or sets the <see cref='System.Windows.Forms.StatusBarPanel.BorderStyle'/> 183/// Gets or sets the <see cref='System.Windows.Forms.StatusBarPanel.Icon'/> 243/// Gets or sets the minimum width the <see cref='System.Windows.Forms.StatusBarPanel'/> can be within the <see cref='System.Windows.Forms.StatusBar'/> 479/// Gets or sets the width of the <see cref='System.Windows.Forms.StatusBarPanel'/> within the <see cref='System.Windows.Forms.StatusBar'/>
winforms\Managed\System\WinForms\StatusBarPanelClickEvent.cs (4)
27readonly StatusBarPanel statusBarPanel; 37public StatusBarPanelClickEventArgs(StatusBarPanel statusBarPanel, MouseButtons button, int clicks, int x, int y) 45/// Specifies the <see cref='System.Windows.Forms.StatusBarPanel'/> that represents the clicked panel. 48public StatusBarPanel StatusBarPanel {