Adding new line of data to TextBox

前端 未结 5 1329
一生所求
一生所求 2020-12-08 13:31

I\'m doing a chat client, and currently I have a button that will display data to a multi-line textbox when clicked. Is this the only way to add data to the multi-line textb

5条回答
  •  时光取名叫无心
    2020-12-08 13:58

    Because you haven't specified what front end (GUI technology) you're using it would be hard to make a specific recommendation. In WPF you could create a listbox and for each new line of chat add a new listboxitem to the end of the collection. This link provides some suggestions as to how you may achieve the same result in a winforms environment.

提交回复
热议问题