4 writes to _componentTray
System.Windows.Forms.Design (4)
System\Windows\Forms\Design\DocumentDesigner.cs (4)
355_componentTray = null; 411_componentTray = null; 864_componentTray = new ComponentTray(this, Component.Site); 918_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(); 402if (_componentTray is not null) 407sws?.RemoveSplitWindow(_componentTray); 410_componentTray.Dispose(); 862if (_componentTray is null && TryGetService(out ISplitWindowService sws)) 865sws.AddSplitWindow(_componentTray); 867_componentTray.Height = _trayHeight; 868_componentTray.ShowLargeIcons = _trayLargeIcon; 869_componentTray.AutoArrange = _trayAutoArrange; 871host.AddService(_componentTray); 874if (_componentTray is not null) 885_componentTray.SuspendLayout(); 888_componentTray.AddComponent(component); 904if (!designableAsControl && _componentTray is not null) 906_componentTray.RemoveComponent(ce.Component); 908if (_componentTray.ComponentCount == 0) 913sws.RemoveSplitWindow(_componentTray); 917_componentTray.Dispose(); 1068if (_trayLayoutSuspended && _componentTray is not null) 1069_componentTray.ResumeLayout();