Add text bullets to a C# form

后端 未结 5 2208
無奈伤痛
無奈伤痛 2021-02-08 17:54

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:31

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

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

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

提交回复
热议问题