4 writes to _componentTray
System.Windows.Forms.Design (4)
System\Windows\Forms\Design\DocumentDesigner.cs (4)
367_componentTray = null; 429_componentTray = null; 903_componentTray = new ComponentTray(this, Component.Site); 957_componentTray = null;
34 references to _componentTray
System.Windows.Forms.Design (34)
System\Windows\Forms\Design\DocumentDesigner.cs (34)
202if (_componentTray is not null) 204_componentTray.AutoArrange = _trayAutoArrange; 216if (_componentTray is not null) 218_componentTray.ShowLargeIcons = _trayLargeIcon; 226get => _componentTray is not null ? _componentTray.Height : _trayHeight; 230if (_componentTray is not null) 232_componentTray.Height = _trayHeight; 245return c ?? (_componentTray is not null ? ((IOleDragClient)_componentTray).GetControlForComponent(component) : null); 251if (_componentTray is null) 274if (_componentTray.IsTrayComponent(comp)) 360if (_componentTray is not null) 365sws.RemoveSplitWindow(_componentTray); 366_componentTray.Dispose(); 420if (_componentTray is not null) 425sws?.RemoveSplitWindow(_componentTray); 428_componentTray.Dispose(); 901if (_componentTray is null && TryGetService(out ISplitWindowService sws)) 904sws.AddSplitWindow(_componentTray); 906_componentTray.Height = _trayHeight; 907_componentTray.ShowLargeIcons = _trayLargeIcon; 908_componentTray.AutoArrange = _trayAutoArrange; 910host.AddService(_componentTray); 913if (_componentTray is not null) 924_componentTray.SuspendLayout(); 927_componentTray.AddComponent(component); 943if (!designableAsControl && _componentTray is not null) 945_componentTray.RemoveComponent(ce.Component); 947if (_componentTray.ComponentCount == 0) 952sws.RemoveSplitWindow(_componentTray); 956_componentTray.Dispose(); 1107if (_trayLayoutSuspended && _componentTray is not null) 1108_componentTray.ResumeLayout();