Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change a Windows Store App's title text

How can I change the shown title of the app? (Like Photos does)

In Winforms that would be form1.Text = "new title";.

How do we do that in UWP?

like image 734
ispiro Avatar asked Oct 28 '15 20:10

ispiro


2 Answers

using Windows.UI.ViewManagement;

...

ApplicationView appView = ApplicationView.GetForCurrentView();
appView.Title = "Title text goes here";
like image 89
Dai Avatar answered Nov 08 '22 09:11

Dai


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

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

like image 33
Parham.D Avatar answered Nov 08 '22 09:11

Parham.D