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

后端 未结 3 898
执念已碎
执念已碎 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 can set the MaxLength property of your text boxes to 0 to override the default 32767 character limit:

    yourTextBox.MaxLength = 0;
    

提交回复
热议问题