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
Just set the border style to None.
this.FormBorderStyle = FormBorderStyle.None;