我想隐藏最大化和最小化按钮,这在设置IsMaximizable和IsMinimizable为false时有效,但当我想通过添加自定义标题栏时:this.ExtendsContentIntoTitleBar = true;,这些按钮无法再隐藏。有办法解决吗?
this.ExtendsContentIntoTitleBar = true;
wvyml7n51#
检查dotMorten的WinUI Ex NuGet包,你可以很容易地用这些行隐藏那些按钮。
using Microsoft.UI.Xaml; using WinUIEx; namespace WinUIExTest; public sealed partial class MainWindow : Window { public MainWindow() { this.InitializeComponent(); WindowManager.Get(this).IsMinimizable = false; WindowManager.Get(this).IsMaximizable = false; } }
1条答案
按热度按时间wvyml7n51#
检查dotMorten的WinUI Ex NuGet包,你可以很容易地用这些行隐藏那些按钮。