The following code provides the C# implementation of the CustomWinTextBox class.
C# |
Copy Code |
using System; using Xceed.Editors;
namespace Xceed.Editors.Samples { public class CustomWinTextBox : WinTextBox { public CustomWinTextBox() :base() { }
protected override TextBoxArea CreateTextBoxArea() { return new CustomTextBoxArea( this ); } } } |