2017-04-14 132 views
0

我正嘗試使用以下代碼在Win 10 UWP應用程序中動態更改應用程序標題。顏色改變但標題不會改變。有什麼建議麼?如何更改UWP應用程序中的應用程序標題

public AppShell() 
{ 
    this.InitializeComponent(); 

    var appTitle = ApplicationView.GetForCurrentView().Title; 
    appTitle = house.Name; 

    var appTitleBar = ApplicationView.GetForCurrentView().TitleBar; 
    appTitleBar.BackgroundColor = Colors.LightBlue; 
    appTitleBar.ButtonBackgroundColor = Colors.LightBlue; 
    appTitleBar.ButtonForegroundColor = Colors.Black; 

    ... 
} 

回答

2

試試這個:

var appView = Windows.UI.ViewManagement.ApplicationView.GetForCurrentView(); 
appView.Title = "Your title..."; 
+0

這改變了應用程序的主窗口的標題在標題欄中,而不是瓷磚。 – BoltClock

+1

太棒了。這是完美的。我猜我的代碼不工作,因爲標題不是一個靜態屬性。謝謝。 – BillC

相關問題