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)
185
using (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;
207
Padding toolStripPadding =
_toolStrip
.Padding;
209
_toolStrip
.Padding = toolStripPadding;
234
Controls.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();
1274
internal AccessibleObject ToolbarAccessibleObject =>
_toolStrip
.AccessibilityObject;
1289
_toolStrip
.Visible = value;
1297
_toolStrip
.Invalidate();
1303
get =>
_toolStrip
?.Renderer;
1306
_toolStrip
?.Renderer = value;
1909
_toolStrip
?.ReleaseUiaProvider(HWND.Null);
2245
return
_toolStrip
;
2649
if (!
_toolStrip
.Visible && !_helpPane.Visible && !_commandsPane.Visible)
2656
if (
_toolStrip
.Visible)
2661
_toolStrip
.Bounds = toolStripBounds;
2663
_gridView.Location = new Point(0,
_toolStrip
.Height +
_toolStrip
.Top);
3280
if (
_toolStrip
.Visible)
3282
_toolStrip
.Focus();
3285
if (
_toolStrip
.Items.Count > 0)
3287
_toolStrip
.SelectNextToolStripItem(start: null, forward: true);
3297
if (
_toolStrip
.Focused || !
_toolStrip
.Visible)
3314
else if (
_toolStrip
.Visible)
3316
_toolStrip
.Focus();
3332
if (
_toolStrip
.Focused)
3365
if (
_toolStrip
.Visible)
3367
_toolStrip
.Focus();
3891
List<ToolStripItem> buttonList = fullRebuild ? new() : new(
_toolStrip
.Items.OfType<ToolStripItem>());
4014
_toolStrip
.ImageList = LargeButtons ? _largeButtonImages : _normalButtonImages;
4016
using (SuspendLayoutScope scope = new(
_toolStrip
))
4018
_toolStrip
.Items.Clear();
4021
_toolStrip
.Items.Add(buttonList[j]);
4262
return
_toolStrip
.Visible &&
_toolStrip
.Focused;
4266
return _gridView.ContainsFocus &&
_toolStrip
.Visible;