我想使用XAML页面容器在XAML页面上设置标题。 Page没有“ Title”或“ WindowTitle”标签。但是,运行时,VS项目名称XAML_001将显示在标题区域中。如何设置自己的标题?
我尝试使用从C#/ WPF中获得的信息,该信息使用的XAML窗口容器确实带有“标题”标签。但是,这不适用于VS 2017空白应用程序(C ++ / WinRT)。
<Page
x:Class="XAML_001.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:XAML_001"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
<Button x:Name="myButton" Click="ClickHandler">Click You</Button>
</StackPanel>
</Page>
我不知道如何更改标题。
答案 0 :(得分:0)
我发现在Package.appxmanifest文件的“显示名称”文本框中的“应用程序”选项卡中设置了C ++ / WinRT,XAML应用程序的Windows标题栏中显示的标题。
由于我不知道的原因,“ Title”属性不在Windows.UI.Xaml.Controls页面类中,而是在C#,WPF应用程序中。