Add text bullets to a C# form

后端 未结 5 1130
梦如初夏
梦如初夏 2021-02-08 17:41

I am creating a form in C# and need to display text on the form. I need some of the text to show up in a bulleted, unordered list. Is it possible to do this while using a label?

5条回答
  •  没有蜡笔的小新
    2021-02-08 18:12

    You could use a WebBrowser control. I.E.:

    WebBrowser webBrowser1 = new WebBrowser(); webBrowser1.DocumentText 1 = "

  • Click ButtonA ...
  • Click ButtonB ...
  • "

提交回复
热议问题