共用方式為


Window.Title 屬性

定義

取得或設定用於視窗標題的字串。

public:
 property Platform::String ^ Title { Platform::String ^ get(); void set(Platform::String ^ value); };
winrt::hstring Title();

void Title(winrt::hstring value);
public string Title { get; set; }
var string = window.title;
window.title = string;
Public Property Title As String

屬性值

String

Platform::String

winrt::hstring

用於視窗標題的字串。

範例

public MainWindow()
{
    InitializeComponent();
    Title = "App title";
}

注意

在 Windows App SDK 1.3.0 和更早版本中,Title 顯示在 XAML IntelliSense for Window中,但在 XAML 中設定它會造成錯誤。 請改為在程式代碼中設定此屬性。 在 Windows App SDK 1.3.1 和更新版本中,您可以在 XAML 中設定此屬性。

<Window
    ...
    Title="App title">
    ...
</Window>

備註

如需詳細資訊,請參閱 標題欄自定義

根據預設,標題列會顯示應用程式的顯示名稱做為視窗標題。 顯示名稱會在 Package.appxmanifest 檔案中設定。 若要將標題取代為自定義文字,請將 Window.Title 屬性設定為文字值,如範例所示。

除了標題列之外,此字串還用於其他系統 UI,例如應用程式切換器(Alt-Tab)。

這是 setWindowText包裝函式。

如果 ExtendsContentIntoTitleBar 設為 true,則標題列不會顯示此值。

適用於

另請參閱