1 write to _toolStrip
System.Windows.Forms (1)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (1)
182_toolStrip = new PropertyGridToolStrip(this);
53 references to _toolStrip
System.Windows.Forms (53)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (53)
185using (SuspendLayoutScope suspendToolStripLayout = new(_toolStrip, performLayout: false)) 187_toolStrip.ShowItemToolTips = true; 189_toolStrip.AccessibleRole = AccessibleRole.ToolBar; 190_toolStrip.TabStop = true; 191_toolStrip.AllowMerge = false; 194_toolStrip.Text = "PropertyGridToolBar"; 197_toolStrip.Dock = DockStyle.None; 198_toolStrip.AutoSize = false; 199_toolStrip.TabIndex = 1; 200_toolStrip.ImageScalingSize = s_normalButtonSize; 203_toolStrip.CanOverflow = false; 206_toolStrip.GripStyle = ToolStripGripStyle.Hidden; 207Padding toolStripPadding = _toolStrip.Padding; 209_toolStrip.Padding = toolStripPadding; 234Controls.AddRange([_helpPane, _commandsPane, _gridView, _toolStrip]); 322_toolStrip.BackColor = value; 323_toolStrip.Invalidate(true); 1250_toolStrip.ImageScalingSize = _largeButtonImages.ImageSize; 1253_toolStrip.ImageList = _largeButtonImages; 1259_toolStrip.ImageScalingSize = _normalButtonImages.ImageSize; 1262_toolStrip.ImageList = _normalButtonImages; 1267_toolStrip.Invalidate(); 1274internal AccessibleObject ToolbarAccessibleObject => _toolStrip.AccessibilityObject; 1289_toolStrip.Visible = value; 1297_toolStrip.Invalidate(); 1303get => _toolStrip?.Renderer; 1306_toolStrip?.Renderer = value; 1909_toolStrip?.ReleaseUiaProvider(HWND.Null); 2245return _toolStrip; 2649if (!_toolStrip.Visible && !_helpPane.Visible && !_commandsPane.Visible) 2656if (_toolStrip.Visible) 2661_toolStrip.Bounds = toolStripBounds; 2663_gridView.Location = new Point(0, _toolStrip.Height + _toolStrip.Top); 3280if (_toolStrip.Visible) 3282_toolStrip.Focus(); 3285if (_toolStrip.Items.Count > 0) 3287_toolStrip.SelectNextToolStripItem(start: null, forward: true); 3297if (_toolStrip.Focused || !_toolStrip.Visible) 3314else if (_toolStrip.Visible) 3316_toolStrip.Focus(); 3332if (_toolStrip.Focused) 3365if (_toolStrip.Visible) 3367_toolStrip.Focus(); 3891List<ToolStripItem> buttonList = fullRebuild ? new() : new(_toolStrip.Items.OfType<ToolStripItem>()); 4014_toolStrip.ImageList = LargeButtons ? _largeButtonImages : _normalButtonImages; 4016using (SuspendLayoutScope scope = new(_toolStrip)) 4018_toolStrip.Items.Clear(); 4021_toolStrip.Items.Add(buttonList[j]); 4262return _toolStrip.Visible && _toolStrip.Focused; 4266return _gridView.ContainsFocus && _toolStrip.Visible;