Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我最近在我的 Visual Studio 更新程序上到处看到它:
这是一种预定义的风格来获得漂亮而时尚的用户界面吗?我想要没有边框但仍然是关闭和最小化按钮的窗口。
那是某种窗户风格吗?
在 Winforms 中,您可以设置FormBoarderStyle为 none,这样边框就会消失。
FormBoarderStyle
在 WPF 中,您可以设置WindowStyle="None".
WindowStyle="None"
在这两种情况下,您都可以自己实现按钮:
this.Close(); //Close this.WindowState = FormWindowState.Minimized; //Minimize