I'm creating a web browser with tabs. To enter the URL, I'm trying to set a MenuStrip with its ToolStripMenuItem
as a Textbox. I'm creating all the controls dynamically and I have 2 questions.
1). How can I insert a Textbox as the ToolStripMenuItem
from the code?
(for this screenshot only I added the MenuStrip at design time)
2). How can I change its width?
Thank you all.
You can use ToolStripTextBox
toolStripTextBox1 = new System.Windows.Forms.ToolStripTextBox();
toolStripTextBox1.Size = new System.Drawing.Size(100, 25);
toolStrip1.Items.Add(toolStripTextBox1);