UWP アプリケーションに Template10 を使用しており、ページ ヘッダー テキストを動的に更新したいと考えています。これが私のXAMLです。
<controls:PageHeader x:Name="pageHeader" Text="{Binding ViewModel.Title}">
<!--place stretched, across top-->
<RelativePanel.AlignTopWithPanel>True</RelativePanel.AlignTopWithPanel>
<RelativePanel.AlignRightWithPanel>True</RelativePanel.AlignRightWithPanel>
<RelativePanel.AlignLeftWithPanel>True</RelativePanel.AlignLeftWithPanel>
</controls:PageHeader>
これが例外メッセージです。
WinRT information: Failed to assign to property 'Template10.Controls.PageHeader.Text'. [Line: 57 Position: 73]
Additional information: The text associated with this error code could not be found.
Failed to assign to property 'Template10.Controls.PageHeader.Text'. [Line: 57 Position: 73]
バインドしなくても完全に機能しますが、動的に変更する必要があります。アイデア/回避策はありますか? ありがとう。