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)
181
using (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;
203
Padding toolStripPadding =
_toolStrip
.Padding;
205
_toolStrip
.Padding = toolStripPadding;
230
Controls.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();
1229
internal AccessibleObject ToolbarAccessibleObject =>
_toolStrip
.AccessibilityObject;
1244
_toolStrip
.Visible = value;
1252
_toolStrip
.Invalidate();
1258
get =>
_toolStrip
?.Renderer;
1261
_toolStrip
?.Renderer = value;
1868
_toolStrip
?.ReleaseUiaProvider(HWND.Null);
2201
return
_toolStrip
;
2605
if (!
_toolStrip
.Visible && !_helpPane.Visible && !_commandsPane.Visible)
2612
if (
_toolStrip
.Visible)
2617
_toolStrip
.Bounds = toolStripBounds;
2619
_gridView.Location = new Point(0,
_toolStrip
.Height +
_toolStrip
.Top);
3236
if (
_toolStrip
.Visible)
3238
_toolStrip
.Focus();
3241
if (
_toolStrip
.Items.Count > 0)
3243
_toolStrip
.SelectNextToolStripItem(start: null, forward: true);
3253
if (
_toolStrip
.Focused || !
_toolStrip
.Visible)
3270
else if (
_toolStrip
.Visible)
3272
_toolStrip
.Focus();
3288
if (
_toolStrip
.Focused)
3321
if (
_toolStrip
.Visible)
3323
_toolStrip
.Focus();
3853
List<ToolStripItem> buttonList = fullRebuild ? new() : new(
_toolStrip
.Items.OfType<ToolStripItem>());
3976
_toolStrip
.ImageList = LargeButtons ? _largeButtonImages : _normalButtonImages;
3978
using (SuspendLayoutScope scope = new(
_toolStrip
))
3980
_toolStrip
.Items.Clear();
3983
_toolStrip
.Items.Add(buttonList[j]);
4224
return
_toolStrip
.Visible &&
_toolStrip
.Focused;
4228
return _gridView.ContainsFocus &&
_toolStrip
.Visible;