我正在为桌面平台开发通用Windows平台应用程序。如何在Windows 10中从<page><application>禁用/删除最大化按钮?

最佳答案

你不能。我没有看到禁用这些按钮的任何选项。您只能更改它们的颜色。

ApplicationViewTitleBar titlebar = ApplicationView.GetForCurrentView().TitleBar;

titlebar.ButtonBackgroundColor = Windows.UI.Color.FromArgb(255, 126, 188, 66);
titlebar.ButtonForegroundColor = Windows.UI.Colors.White;

07-27 22:24