1 write to toolStrip
System.Windows.Forms (1)
winforms\Managed\System\WinForms\PropertyGrid.cs (1)
217
toolStrip
= AccessibilityImprovements.Level3 ? new PropertyGridToolStrip(this) : new ToolStrip();
68 references to toolStrip
System.Windows.Forms (68)
winforms\Managed\System\WinForms\PropertyGrid.cs (68)
218
toolStrip
.SuspendLayout();
219
toolStrip
.ShowItemToolTips = true;
220
toolStrip
.AccessibleName = SR.GetString(SR.PropertyGridToolbarAccessibleName);
221
toolStrip
.AccessibleRole = AccessibleRole.ToolBar;
222
toolStrip
.TabStop = true;
223
toolStrip
.AllowMerge = false;
226
toolStrip
.Text = "PropertyGridToolBar";
229
toolStrip
.Dock = DockStyle.None;
230
toolStrip
.AutoSize = false;
231
toolStrip
.TabIndex = 1;
232
toolStrip
.ImageScalingSize = normalButtonSize;
235
toolStrip
.CanOverflow = false;
239
toolStrip
.GripStyle = ToolStripGripStyle.Hidden;
240
Padding toolStripPadding =
toolStrip
.Padding;
242
toolStrip
.Padding = toolStripPadding;
269
Controls.AddRange(new Control[] { doccomment, hotcommands, gridView,
toolStrip
});
272
toolStrip
.ResumeLayout(false); // SetupToolbar should perform the layout
377
toolStrip
.BackColor = value;
378
toolStrip
.Invalidate(true);
1523
toolStrip
.ImageScalingSize = this.imageList[LARGE_BUTTONS].ImageSize;
1528
toolStrip
.ImageScalingSize = this.imageList[NORMAL_BUTTONS].ImageSize;
1532
toolStrip
.ImageList = imageList[this.buttonType];
1535
toolStrip
.Invalidate();
1544
return
toolStrip
.AccessibilityObject;
1564
toolStrip
.Visible = value;
1570
toolStrip
.Invalidate();
1578
if (
toolStrip
!= null) {
1579
return
toolStrip
.Renderer;
1584
if (
toolStrip
!= null) {
1585
toolStrip
.Renderer = value;
2614
return
toolStrip
;
2985
if (!
toolStrip
.Visible && !doccomment.Visible && !hotcommands.Visible) {
2991
if (
toolStrip
.Visible) {
2996
toolStrip
.Bounds = toolStripBounds;
2999
gridView.Location = new Point(0,
toolStrip
.Height +
toolStrip
.Top);
3755
if (
toolStrip
.Visible) {
3756
toolStrip
.FocusInternal();
3759
if (
toolStrip
.Items.Count > 0) {
3760
toolStrip
.SelectNextToolStripItem(null, /*forward =*/ true);
3772
if (
toolStrip
.Focused || !
toolStrip
.Visible) {
3784
else if (
toolStrip
.Visible) {
3785
toolStrip
.FocusInternal();
3799
if (
toolStrip
.Focused) {
3824
if (
toolStrip
.Visible) {
3825
toolStrip
.FocusInternal();
4397
buttonList = new ArrayList(
toolStrip
.Items);
4510
toolStrip
.ImageList = imageList[this.buttonType];
4512
toolStrip
.SuspendLayout();
4513
toolStrip
.Items.Clear();
4515
toolStrip
.Items.Add(buttonList[j] as ToolStripItem);
4517
toolStrip
.ResumeLayout();
4793
return
toolStrip
.Visible &&
toolStrip
.Focused;
4796
return gridView.ContainsFocus &&
toolStrip
.Visible;
4915
if (
toolStrip
!= null) {
4916
m.Result = (IntPtr)
toolStrip
.Items.Count;
4921
if (
toolStrip
!= null) {
4923
if( index >= 0 && index <
toolStrip
.Items.Count ) {
4924
ToolStripButton button =
toolStrip
.Items[index] as ToolStripButton;
4936
if (
toolStrip
!= null) {
4938
if( index >= 0 && index <
toolStrip
.Items.Count ) {
4939
ToolStripButton button =
toolStrip
.Items[index] as ToolStripButton;
4966
if (
toolStrip
!= null) {
4968
if( index >= 0 && index <
toolStrip
.Items.Count ) {
4971
text =
toolStrip
.Items[index].Text;
4974
text =
toolStrip
.Items[index].ToolTipText;