1 write to toolStrip1
WinFormsControlsTest (1)
ToolStripTests.Designer.cs (1)
34this.toolStrip1 = new System.Windows.Forms.ToolStrip();
13 references to toolStrip1
WinFormsControlsTest (13)
ToolStripTests.cs (2)
15toolStrip1.Items.Add(new ToolStripControlHost(new RadioButton() { Text = "RadioButton" })); // RadioButton supports UIA 16toolStrip1.Items.Add(new ToolStripControlHost(new HScrollBar() { Value = 30 })); // HScrollBar doesn't support UIA
ToolStripTests.Designer.cs (11)
77this.toolStrip1.SuspendLayout(); 83this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { 88this.toolStrip1.Location = new System.Drawing.Point(0, 0); 89this.toolStrip1.Name = "toolStrip1"; 90this.toolStrip1.Size = new System.Drawing.Size(481, 22); 91this.toolStrip1.TabIndex = 0; 92this.toolStrip1.Text = "toolStrip1"; 93this.toolStrip1.TabStop = true; 443this.Controls.Add(this.toolStrip1); 446this.toolStrip1.ResumeLayout(false); 447this.toolStrip1.PerformLayout();