36

我刚刚开始使用 Visual Studio 2015 Community Edition 在 Windows 10 Pro 上学习 UWP 应用开发。我尝试修改官方“Hello, World!”的C#版本 通过在 MainPage.xaml 中设置 Page 标记的WidthHeight属性来进行示例。

有趣的是,当我启动应用程序时,它的大小会有所不同。此外,如果我调整它的窗口大小然后重新启动它,应用程序似乎会记住它以前的窗口大小。

是否可以强制 UWP 应用程序具有预定义的窗口大小,至少在台式机上?

4

4 回答 4

79

尝试像这样PreferredLaunchViewSize在你MainPage构造函数中设置:

public MainPage()
{
    this.InitializeComponent();

    ApplicationView.PreferredLaunchViewSize = new Size(480, 800);
    ApplicationView.PreferredLaunchWindowingMode = ApplicationViewWindowingMode.PreferredLaunchViewSize;
}

正如@kol 还指出的那样,如果您想要任何小于默认500x320的尺寸,则需要手动重置它:

ApplicationView.GetForCurrentView().SetPreferredMinSize(new Size(200, 100));
于 2015-08-08T00:07:16.450 回答
12

您实际上无法控制窗口大小,即使您尝试重新调整它的大小,它也可能会失败。我在 MSDN 论坛上问过同样的问题,并在这里得到了答案:

Windows 10 通用 DirectX 应用程序

顺便说一句,这是您的事件处理程序“OnLaunched”或事件处理程序“OnActivated”中的解决方案:

Window.Current.Activate();

并将其替换为:

float DPI = Windows.Graphics.Display.DisplayInformation.GetForCurrentView().LogicalDpi;

Windows.UI.ViewManagement.ApplicationView.PreferredLaunchWindowingMode = Windows.UI.ViewManagement.ApplicationViewWindowingMode.PreferredLaunchViewSize;

var desiredSize = new Windows.Foundation.Size(((float)800 * 96.0f / DPI), ((float)600 * 96.0f / DPI));

Windows.UI.ViewManagement.ApplicationView.PreferredLaunchViewSize = desiredSize;

Window.Current.Activate();

bool result = Windows.UI.ViewManagement.ApplicationView.GetForCurrentView().TryResizeView(desiredSize);

最好将此代码放入“OnActivated()”事件处理程序中,因为它会在应用程序启动时以及在任何中断后变为活动状态时设置您定义的大小。

在“desiredSize”计算中,800 是宽度,600 是高度。这个计算是必要的,因为大小是 DPI,所以你必须将它从像素转换为 DPI。

还要记住,尺寸不能小于“320x200”。

于 2015-12-21T20:26:42.433 回答
4

对于第一个应用程序启动,无论您在代码中设置什么,都设置为ApplicationView.PreferredLaunchWindowingModeApplicationViewWindowingMode.Auto

但是,从MSDN 上的这个问题来看,可能有办法克服这个问题。其中一个答案提供了一种设置第一个启动大小的方法(之后恢复Auto)。

如果您的目标是一次只启动一次PreferredLaunchViewSize,您可以使用这个粗鲁的解决方案(取决于您的编码风格更好地实现!:P)

public MainPage()
{
    this.InitializeComponent();

    var localSettings = Windows.Storage.ApplicationData.Current.LocalSettings;
        if (localSettings.Values["launchedWithPrefSize"] == null)
        {
            // first app launch only!!
            ApplicationView.PreferredLaunchViewSize = new Size(100, 100);
            ApplicationView.PreferredLaunchWindowingMode = ApplicationViewWindowingMode.PreferredLaunchViewSize;
            localSettings.Values["launchedWithPrefSize"] = true;
        }
        // resetting the auto-resizing -> next launch the system will control the PreferredLaunchViewSize
        ApplicationView.PreferredLaunchWindowingMode = ApplicationViewWindowingMode.Auto;
    }
}

PS我没有测试过这个。

于 2018-03-19T13:55:08.110 回答
0

在 StackOverflow 的另一个链接中,还有另一种方法:https ://stackoverflow.com/a/68583688/5993426 。这段代码要插入到 App.xaml 中:

    protected override void OnWindowCreated(WindowCreatedEventArgs args)
    {
        SetWindowMinSize(new Size(args.Window.Bounds.Width, args.Window.Bounds.Height));
        args.Window.CoreWindow.SizeChanged += CoreWindow_SizeChanged;
        base.OnWindowCreated(args);
    }

    private void CoreWindow_SizeChanged(Windows.UI.Core.CoreWindow sender, Windows.UI.Core.WindowSizeChangedEventArgs args)
    {
        if (SetWindowMinSize(args.Size))
        {
            sender.ReleasePointerCapture();
        }            
    }

    private bool SetWindowMinSize(Size size)
    {
        if (size.Width < minWidth || size.Height < minHeight)
        {
            if (size.Width < minWidth) size.Width = minWidth + 10;
            if (size.Height < minHeight) size.Height = minHeight + 10;
            return ApplicationView.GetForCurrentView().TryResizeView(size);
        }
        return false;
    }
于 2021-12-14T12:44:03.293 回答