How to make a window have taskbar text but no title bar

前端 未结 4 743
名媛妹妹
名媛妹妹 2020-12-06 06:52

How can I make my window not have a title bar but appear in the task bar with some descriptive text? If you set the Form\'s .Text property then .net gives it a title bar, wh

4条回答
  •  一向
    一向 (楼主)
    2020-12-06 07:21

    Just set the border style to None.

    this.FormBorderStyle = FormBorderStyle.None;
    

提交回复
热议问题