How to maximise a Windows 10 Universal Application#39;s window to full screen when running on a desktop?(在桌面上运行时,如何将 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 通用应用程序的窗口最大化为全屏?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在桌面上运行时,如何将 Windows 10 通用应用程序的窗口最大化为全屏?
- C#MongoDB使用Builders查找派生对象 2022-09-04
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- 输入按键事件处理程序 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
