只需快速澄清一下 .setTitleBar() 的使用。
主窗口.xaml
<Window
x:Class="Wrath.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:Wrath"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">
<Grid>
<!-- ... -->
<TextBlock x:Name="CustomTitleBar">Custom title text</TextBlock>
<!-- ... -->
</Grid>
</Window>
主窗口.xaml.cpp
MainWindow::ExtendsContentIntoTitleBar(true);
MainWindow::SetTitleBar(?);
如何在 SetTitleBar 函数中引用 xaml 元素作为参数?
这基于以下提供的示例(仅适用于 .cs):