c# - 文本框是否有字符限制?

时间:2012-11-23 09:52:14

标签: c# textbox

  

可能重复:
  Max Char in TextBox C#?

在MaxLenght设置为0的c#winform应用程序的文本框中是否存在已知字符限制?

谢谢, 汉斯

3 个答案:

答案 0 :(得分:12)

Win32 documentation说:

  

在调用EM_SETLIMITTEXT之前,用户可以在编辑控件中输入的文本量的默认限制为32,767个字符。

     

对于单行编辑控件,文本限制为[...] 0x7FFFFFFE(2147483646)字节

TextBoxBase.MaxLength文档证实了这一点:

  

可以输入控件的字符数。默认值为32767。

     

如果MaxLength属性设置为0,则用户可以输入的最大字符数为2147483646 [或Windows ME上的32,766],或者基于可用内存的数量,以较小者为准。

答案 1 :(得分:0)

适用于Windows NT 4.0,Windows 2000,Windows 2000 Professional,Windows 2000 Server,Windows 2000 Advanced Server,Windows XP Home Edition,Windows XP Professional x64 Edition,Windows Server 2003平台: -

  

如果MaxLength属性设置为0,则最大数量为          用户可以输入的字符为2147483646an amount based on available memory, whichever is smaller.

for Windows Millennium Edition Platform:

  

如果MaxLength属性设置为0,则用户可以输入的最大字符数为32,766或基于可用内存的数量,以较小者为准。

有关详细信息,请参阅此link

答案 2 :(得分:0)

Textbox windows form control:
The number of characters that can be entered into the control.

默认值为32767。     更多细节 :     http://msdn.microsoft.com/en-us/library/system.windows.forms.textboxbase.maxlength.aspx