我一直在开发一个 wpf 应用程序。当我使用“ WindowState.Maximized ”时,一切都很好,但我必须将以下代码添加到具有 Metro 风格菜单的 mainform 中。我不喜欢地铁风格导航的滚动如何删除滚动。我添加了菜单的边距 0,0,0,0 但不起作用。当我将最大化更改为正常时,我不喜欢滚动。如何删除滚动?
public MainWindow()
{
InitializeComponent();
this.Width = System.Windows.Forms.Screen.PrimaryScreen.WorkingArea.Width;
this.Height = System.Windows.Forms.Screen.PrimaryScreen.WorkingArea.Height;
this.Left = 0;
this.Top = 0;
this.WindowState = WindowState.Normal;