1 write to _toolStrip
System.Windows.Forms (1)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (1)
178_toolStrip = new PropertyGridToolStrip(this);
53 references to _toolStrip
System.Windows.Forms (53)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (53)
181using (SuspendLayoutScope suspendToolStripLayout = new(_toolStrip, performLayout: false)) 183_toolStrip.ShowItemToolTips = true; 185_toolStrip.AccessibleRole = AccessibleRole.ToolBar; 186_toolStrip.TabStop = true; 187_toolStrip.AllowMerge = false; 190_toolStrip.Text = "PropertyGridToolBar"; 193_toolStrip.Dock = DockStyle.None; 194_toolStrip.AutoSize = false; 195_toolStrip.TabIndex = 1; 196_toolStrip.ImageScalingSize = s_normalButtonSize; 199_toolStrip.CanOverflow = false; 202_toolStrip.GripStyle = ToolStripGripStyle.Hidden; 203Padding toolStripPadding = _toolStrip.Padding; 205_toolStrip.Padding = toolStripPadding; 230Controls.AddRange([_helpPane, _commandsPane, _gridView, _toolStrip]); 318_toolStrip.BackColor = value; 319_toolStrip.Invalidate(true); 1205_toolStrip.ImageScalingSize = _largeButtonImages.ImageSize; 1208_toolStrip.ImageList = _largeButtonImages; 1214_toolStrip.ImageScalingSize = _normalButtonImages.ImageSize; 1217_toolStrip.ImageList = _normalButtonImages; 1222_toolStrip.Invalidate(); 1229internal AccessibleObject ToolbarAccessibleObject => _toolStrip.AccessibilityObject; 1244_toolStrip.Visible = value; 1252_toolStrip.Invalidate(); 1258get => _toolStrip?.Renderer; 1261_toolStrip?.Renderer = value; 1868_toolStrip?.ReleaseUiaProvider(HWND.Null); 2201return _toolStrip; 2605if (!_toolStrip.Visible && !_helpPane.Visible && !_commandsPane.Visible) 2612if (_toolStrip.Visible) 2617_toolStrip.Bounds = toolStripBounds; 2619_gridView.Location = new Point(0, _toolStrip.Height + _toolStrip.Top); 3236if (_toolStrip.Visible) 3238_toolStrip.Focus(); 3241if (_toolStrip.Items.Count > 0) 3243_toolStrip.SelectNextToolStripItem(start: null, forward: true); 3253if (_toolStrip.Focused || !_toolStrip.Visible) 3270else if (_toolStrip.Visible) 3272_toolStrip.Focus(); 3288if (_toolStrip.Focused) 3321if (_toolStrip.Visible) 3323_toolStrip.Focus(); 3853List<ToolStripItem> buttonList = fullRebuild ? new() : new(_toolStrip.Items.OfType<ToolStripItem>()); 3976_toolStrip.ImageList = LargeButtons ? _largeButtonImages : _normalButtonImages; 3978using (SuspendLayoutScope scope = new(_toolStrip)) 3980_toolStrip.Items.Clear(); 3983_toolStrip.Items.Add(buttonList[j]); 4224return _toolStrip.Visible && _toolStrip.Focused; 4228return _gridView.ContainsFocus && _toolStrip.Visible;