在桌面上运行时,如何将 Windows 10 通用应用程序的窗口最大化为全屏?

How to maximise a Windows 10 Universal Application#39;s window to full screen when running on a desktop?(在桌面上运行时,如何将 Windows 10 通用应用程序的窗口最大化为全屏?)
本文介绍了在桌面上运行时,如何将 Windows 10 通用应用程序的窗口最大化为全屏?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

使用 Windows 10(或 Windows 8.1 WinRT)构建通用应用程序时,是否可以强制应用程序的主窗口在启动时最大化?这显然是应用程序在移动设备上运行时的自然行为,但在桌面上运行时则不然.

When building a universal application using Windows 10 (or Windows 8.1 WinRT), is it possible to force the application's main window to maximise on launch? This is obviously natural behaviour for the application when running on a mobile device but not when running on the desktop.

这当然可以使用 WinForms:

This is certainly possible using WinForms:

  • 如何让 WinForms 应用程序完全运行屏幕
  • 如何在任务栏顶部全屏显示 Windows 窗体?

但到目前为止,我还没有在 Microsoft 文档中找到任何关于 Windows 10 的信息.

But I haven't so far managed to find anything in the Microsoft Documentation about this for Windows 10.

推荐答案

应用可以通过设置 ApplicationView 来请求全屏启动.PreferredLaunchWindowingMode 到 ApplicationViewWindowingMode.FullScreen

An app can request to start as full screen by setting the ApplicationView.PreferredLaunchWindowingMode to ApplicationViewWindowingMode.FullScreen

Roberth 在他的构建会话中讨论了这一点以及其他视图和窗口大小问题通用 Windows 中的导航和窗口化应用程序

Roberth discussed this along with other view and window size issues in his Build session Navigation and Windowing in Universal Windows Apps

这篇关于在桌面上运行时,如何将 Windows 10 通用应用程序的窗口最大化为全屏?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

DispatcherQueue null when trying to update Ui property in ViewModel(尝试更新ViewModel中的Ui属性时DispatcherQueue为空)
Drawing over all windows on multiple monitors(在多个监视器上绘制所有窗口)
Programmatically show the desktop(以编程方式显示桌面)
c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
LINQ many-to-many relationship, how to write a correct WHERE clause?(LINQ多对多关系,如何写一个正确的WHERE子句?)