4

I create a new Xamarin project with Visual Studio and it contain projects for different platforms:

MyAppName
MyAppName.Droid
MyAppName.iOS
MyAppName.UWP

When I run the UWP App, the window title bar show the name "MyAppName.UWP". I want to see only "MyAppName".

I have changed: Assembly information / Title and Product

Package Manifest / Application / Display name and Description

Package Manifest / Packaging / Package display name

None of them have changed the title in the window title bar.

What I have to change?

user2272143
  • 469
  • 5
  • 22
  • 2
    You just need to modify `DisplayName` where in the Package Manifest file. And remove `.UWP` field. The title will be changed. – Nico Zhu Nov 26 '18 at 07:22

1 Answers1

2

As stated in a comment, to set the Window title for the UWP app you need to modify the DisplayName in the Package.appmanifest file.

John Cummings
  • 1,949
  • 3
  • 22
  • 38