Change a Windows Store App's title text

人走茶凉 提交于 2019-12-05 02:34:51
using Windows.UI.ViewManagement;

...

ApplicationView appView = ApplicationView.GetForCurrentView();
appView.Title = "Title text goes here";
Parham.D

When I use ApplicationView, it appends the Title to the assembly name.

We could edit Application -> Display Name in the Package.appxmanifest file.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!