Ribbon for WinForms
テキストボックス
要素 > リボンアイテム > テキストボックス

A TextBox enables the user to input text information in the application.

The Ribbon TextBox item is shown in the image below:

The TextBox can be added at design-time using the Floating Toolbar or Collection Editor. Refer this topic for detailed information. A TextBox can also be added to the C1Ribbon control through the code using the RibbonTextBox class. This is depicted in the code below:

' TextBoxを追加します
Dim textBox As RibbonTextBox = New RibbonTextBox()
textBox.Text = "Sample Text"
formatGroup.Items.Add(textBox)
// TextBoxを追加します
RibbonTextBox textBox = new RibbonTextBox();
textBox.Text = "Sample Text";
formatGroup.Items.Add(textBox);