(Windows Phone項目)我嘗試創建一個場景,用戶將單擊一個文本並顯示一個xaml頁面。 該文本被稱爲「條款和條件」。XamlParerException:嘗試將文本鏈接到Xaml頁面
Event code for the text component
private void MouseEnter_Agent(object sender, System.Windows.Input.KeyEventArgs e)
{
this.NavigationService.Navigate(new Uri("/AgentTerms.xaml", UriKind.Relative));
}
XAML中界面代碼
<TextBlock TextWrapping="Wrap" Height="30" Foreground="Red" MouseEnter="MouseEnter_Agent">
<Underline>
<Run Text="Read JizAgent Terms and Conditions"/>
</Underline>
<LineBreak/>
<Run/>
</TextBlock>
我得到的錯誤,當我點擊文本 - XamlParerException
您正在使用哪種XAML實現(例如WPF,WinRT XAML)? –
它適用於Windows Phone。 – user3302974