4 writes to _componentTray
System.Windows.Forms.Design (4)
System\Windows\Forms\Design\DocumentDesigner.cs (4)
355_componentTray = null; 408_componentTray = null; 861_componentTray = new ComponentTray(this, Component.Site); 915_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(); 399if (_componentTray is not null) 404sws?.RemoveSplitWindow(_componentTray); 407_componentTray.Dispose(); 859if (_componentTray is null && TryGetService(out ISplitWindowService sws)) 862sws.AddSplitWindow(_componentTray); 864_componentTray.Height = _trayHeight; 865_componentTray.ShowLargeIcons = _trayLargeIcon; 866_componentTray.AutoArrange = _trayAutoArrange; 868host.AddService(_componentTray); 871if (_componentTray is not null) 882_componentTray.SuspendLayout(); 885_componentTray.AddComponent(component); 901if (!designableAsControl && _componentTray is not null) 903_componentTray.RemoveComponent(ce.Component); 905if (_componentTray.ComponentCount == 0) 910sws.RemoveSplitWindow(_componentTray); 914_componentTray.Dispose(); 1065if (_trayLayoutSuspended && _componentTray is not null) 1066_componentTray.ResumeLayout();