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)
179
using (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;
201
Padding toolStripPadding =
_toolStrip
.Padding;
203
_toolStrip
.Padding = toolStripPadding;
228
Controls.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();
1227
internal AccessibleObject ToolbarAccessibleObject =>
_toolStrip
.AccessibilityObject;
1242
_toolStrip
.Visible = value;
1250
_toolStrip
.Invalidate();
1256
get =>
_toolStrip
?.Renderer;
1259
_toolStrip
?.Renderer = value;
1866
_toolStrip
?.ReleaseUiaProvider(HWND.Null);
2199
return
_toolStrip
;
2603
if (!
_toolStrip
.Visible && !_helpPane.Visible && !_commandsPane.Visible)
2610
if (
_toolStrip
.Visible)
2615
_toolStrip
.Bounds = toolStripBounds;
2617
_gridView.Location = new Point(0,
_toolStrip
.Height +
_toolStrip
.Top);
3234
if (
_toolStrip
.Visible)
3236
_toolStrip
.Focus();
3239
if (
_toolStrip
.Items.Count > 0)
3241
_toolStrip
.SelectNextToolStripItem(start: null, forward: true);
3251
if (
_toolStrip
.Focused || !
_toolStrip
.Visible)
3268
else if (
_toolStrip
.Visible)
3270
_toolStrip
.Focus();
3286
if (
_toolStrip
.Focused)
3319
if (
_toolStrip
.Visible)
3321
_toolStrip
.Focus();
3851
List<ToolStripItem> buttonList = fullRebuild ? new() : new(
_toolStrip
.Items.OfType<ToolStripItem>());
3974
_toolStrip
.ImageList = LargeButtons ? _largeButtonImages : _normalButtonImages;
3976
using (SuspendLayoutScope scope = new(
_toolStrip
))
3978
_toolStrip
.Items.Clear();
3981
_toolStrip
.Items.Add(buttonList[j]);
4222
return
_toolStrip
.Visible &&
_toolStrip
.Focused;
4226
return _gridView.ContainsFocus &&
_toolStrip
.Visible;