Is there a way to programmatically minimize a window

前端 未结 10 688
感动是毒
感动是毒 2021-02-03 17:09

What I\'m doing is I have a full-screen form, with no title bar, and consequently lacks the minimize/maximize/close buttons found in the upper-right hand corner. I\'m wanting to

10条回答
  •  悲哀的现实
    2021-02-03 17:31

    -- c#.net

    NORMALIZE this.WindowState = FormWindowState.Normal;

    this.WindowState = FormWindowState.Minimized;

提交回复
热议问题