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;
1864
_toolStrip
?.ReleaseUiaProvider(HWND.Null);
2200
return
_toolStrip
;
2604
if (!
_toolStrip
.Visible && !_helpPane.Visible && !_commandsPane.Visible)
2611
if (
_toolStrip
.Visible)
2616
_toolStrip
.Bounds = toolStripBounds;
2618
_gridView.Location = new Point(0,
_toolStrip
.Height +
_toolStrip
.Top);
3235
if (
_toolStrip
.Visible)
3237
_toolStrip
.Focus();
3240
if (
_toolStrip
.Items.Count > 0)
3242
_toolStrip
.SelectNextToolStripItem(start: null, forward: true);
3252
if (
_toolStrip
.Focused || !
_toolStrip
.Visible)
3269
else if (
_toolStrip
.Visible)
3271
_toolStrip
.Focus();
3287
if (
_toolStrip
.Focused)
3320
if (
_toolStrip
.Visible)
3322
_toolStrip
.Focus();
3846
List<ToolStripItem> buttonList = fullRebuild ? new() : new(
_toolStrip
.Items.OfType<ToolStripItem>());
3969
_toolStrip
.ImageList = LargeButtons ? _largeButtonImages : _normalButtonImages;
3971
using (SuspendLayoutScope scope = new(
_toolStrip
))
3973
_toolStrip
.Items.Clear();
3976
_toolStrip
.Items.Add(buttonList[j]);
4217
return
_toolStrip
.Visible &&
_toolStrip
.Focused;
4221
return _gridView.ContainsFocus &&
_toolStrip
.Visible;