$99 VS $1000+. UI Control for ASP.NET AJAX(contains chart and gridview).
Editors Control for Windows Forms
Powerful data input control for WinForms application, flexible data entry controls, strict validation
Home > WinForms UI Controls > User Manual > Get Started in C# in C#

C# Code for Text Box Control

The Kettic Text Box Control are build for .NET UI designers to retrieve the input string that are typed by users or show the text in the text box control. With the powerful C# Text Box WinForms control, developers are able to broad their user interface design in C# to the text box, such as displaying multiple lines in C#, wrapping text to fit the text box size in C#, adding basic formatting in C#, applying themes in C#. And the key differences are that the Kettic Text Box are able to transparent and use gradients. There is a single format style available for showing and entering the text.

Resides Text Property in C#

UI designers are allowed to reside the text displayed by the Text Box control through the Text property. The properties support both design time and run time, so developers are able to customize the text control in the Properties window in Microsoft Visual Studio at run time in C# code or at design time. The following example demonstrates that how to retrieve the text from a text box at run time.
The C# code below will configure text in the text box control at run time

private void SetDefaultText()
{
this.ketticTextBoxControl.Text = "Text Content";
}
The C# code below will define the lines in the text box control at run time

private void SetLines()
{
string[] lines = new string[]
{
"Resides Text Property in C#",
"UI designers are allowed to reside the text displayed by the Text Box control through the Text property. ",
"The C# code below will define the lines in the text box control at run time"
};
this.ketticTextBoxControl.Lines = lines;
}
The C# code below will show custom string by change the NullText property to empty or null.

private void SetNullText()
{
this.ketticTextBoxControl.NullText = "Text Content";
}
UI Controlsfor Windows Forms
.NET WinForms UI Overview.NET WinForms UI Features.NET WinForms UI GuideC# WinForms UI DesignVB.NET WinForms UI Design
WinForms UI Controls