Make multiline textbox hold more text (C#, winform)

后端 未结 3 904
执念已碎
执念已碎 2021-02-14 14:22

I ran into a little problem, i am trying to filter a rather large list which i copied from another program and pasted into mine. Problem is, theres so much text that only some o

3条回答
  •  傲寒
    傲寒 (楼主)
    2021-02-14 14:36

    You could use a RichTextBox control instead. There is no character limit on a RichTextBox. It is just limited by memory.

    Or you could change the MaxLength property of the TextBox. The maximum value for MaxLength is 4294967295 or an amount based on available memory, whichever is smaller.

提交回复
热议问题