4 writes to _componentTray
System.Windows.Forms.Design (4)
System\Windows\Forms\Design\DocumentDesigner.cs (4)
355_componentTray = null; 417_componentTray = null; 891_componentTray = new ComponentTray(this, Component.Site); 945_componentTray = null;
31 references to _componentTray
System.Windows.Forms.Design (31)
System\Windows\Forms\Design\DocumentDesigner.cs (31)
199_componentTray?.AutoArrange = _trayAutoArrange; 210_componentTray?.ShowLargeIcons = _trayLargeIcon; 217get => _componentTray is not null ? _componentTray.Height : _trayHeight; 221_componentTray?.Height = _trayHeight; 233return c ?? (_componentTray is not null ? ((IOleDragClient)_componentTray).GetControlForComponent(component) : null); 239if (_componentTray is null) 262if (_componentTray.IsTrayComponent(comp)) 348if (_componentTray is not null) 353sws.RemoveSplitWindow(_componentTray); 354_componentTray.Dispose(); 408if (_componentTray is not null) 413sws?.RemoveSplitWindow(_componentTray); 416_componentTray.Dispose(); 889if (_componentTray is null && TryGetService(out ISplitWindowService sws)) 892sws.AddSplitWindow(_componentTray); 894_componentTray.Height = _trayHeight; 895_componentTray.ShowLargeIcons = _trayLargeIcon; 896_componentTray.AutoArrange = _trayAutoArrange; 898host.AddService(_componentTray); 901if (_componentTray is not null) 912_componentTray.SuspendLayout(); 915_componentTray.AddComponent(component); 931if (!designableAsControl && _componentTray is not null) 933_componentTray.RemoveComponent(ce.Component); 935if (_componentTray.ComponentCount == 0) 940sws.RemoveSplitWindow(_componentTray); 944_componentTray.Dispose(); 1095if (_trayLayoutSuspended && _componentTray is not null) 1096_componentTray.ResumeLayout();