1 write to _toolStrip
System.Windows.Forms (1)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (1)
176_toolStrip = new PropertyGridToolStrip(this);
53 references to _toolStrip
System.Windows.Forms (53)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (53)
179using (SuspendLayoutScope suspendToolStripLayout = new(_toolStrip, performLayout: false)) 181_toolStrip.ShowItemToolTips = true; 183_toolStrip.AccessibleRole = AccessibleRole.ToolBar; 184_toolStrip.TabStop = true; 185_toolStrip.AllowMerge = false; 188_toolStrip.Text = "PropertyGridToolBar"; 191_toolStrip.Dock = DockStyle.None; 192_toolStrip.AutoSize = false; 193_toolStrip.TabIndex = 1; 194_toolStrip.ImageScalingSize = s_normalButtonSize; 197_toolStrip.CanOverflow = false; 200_toolStrip.GripStyle = ToolStripGripStyle.Hidden; 201Padding toolStripPadding = _toolStrip.Padding; 203_toolStrip.Padding = toolStripPadding; 228Controls.AddRange([_helpPane, _commandsPane, _gridView, _toolStrip]); 316_toolStrip.BackColor = value; 317_toolStrip.Invalidate(true); 1203_toolStrip.ImageScalingSize = _largeButtonImages.ImageSize; 1206_toolStrip.ImageList = _largeButtonImages; 1212_toolStrip.ImageScalingSize = _normalButtonImages.ImageSize; 1215_toolStrip.ImageList = _normalButtonImages; 1220_toolStrip.Invalidate(); 1227internal AccessibleObject ToolbarAccessibleObject => _toolStrip.AccessibilityObject; 1242_toolStrip.Visible = value; 1250_toolStrip.Invalidate(); 1256get => _toolStrip?.Renderer; 1259_toolStrip?.Renderer = value; 1866_toolStrip?.ReleaseUiaProvider(HWND.Null); 2199return _toolStrip; 2603if (!_toolStrip.Visible && !_helpPane.Visible && !_commandsPane.Visible) 2610if (_toolStrip.Visible) 2615_toolStrip.Bounds = toolStripBounds; 2617_gridView.Location = new Point(0, _toolStrip.Height + _toolStrip.Top); 3234if (_toolStrip.Visible) 3236_toolStrip.Focus(); 3239if (_toolStrip.Items.Count > 0) 3241_toolStrip.SelectNextToolStripItem(start: null, forward: true); 3251if (_toolStrip.Focused || !_toolStrip.Visible) 3268else if (_toolStrip.Visible) 3270_toolStrip.Focus(); 3286if (_toolStrip.Focused) 3319if (_toolStrip.Visible) 3321_toolStrip.Focus(); 3851List<ToolStripItem> buttonList = fullRebuild ? new() : new(_toolStrip.Items.OfType<ToolStripItem>()); 3974_toolStrip.ImageList = LargeButtons ? _largeButtonImages : _normalButtonImages; 3976using (SuspendLayoutScope scope = new(_toolStrip)) 3978_toolStrip.Items.Clear(); 3981_toolStrip.Items.Add(buttonList[j]); 4222return _toolStrip.Visible && _toolStrip.Focused; 4226return _gridView.ContainsFocus && _toolStrip.Visible;