将Windows Phone HyperlinkBut​​ton导航移植到Windows 8 HyperlinkBut​​ton导航

时间:2014-01-05 01:12:46

标签: c# windows-8 windows-phone-8

我将我的一个Windows Phone 8应用程序移植到Windows 8,我遇到了导航问题。

Windows Phone 8 C#:

HyperlinkButton flcb_standard = new HyperlinkButton();
flcb_standard.NavigateUri = new Uri("/player.xaml?publishingpoint=http://mlmidev.webcastcenter.com/flcb_1/idev.isml/manifest", UriKind.Relative);

Windows 8 C#:

this.Frame.Navigate(typeof(player), publishingpoint);

我可以使用Click=""将控件绑定到XAML中的相应命令。问题是我正在使用C#创建控件,但我找不到可以将this.Frame.*设置为的属性。

如何使用新的Windows 8导航方法执行此导航?

1 个答案:

答案 0 :(得分:0)

好的,我不确定这是否是最佳方式。但它确实有用。

C#:

// set outside of the other two functions so it will be global
string publishingpoint_sunday = "";

public async void Rebroadcast()
{
    publishingpoint_sunday = rootObject.sunday_publishingpoint_smoothstreaming;

    HyperlinkButton sunday_title = new HyperlinkButton();
    sunday_title.Content = "Sunday (" + sunday.ToUpper() + ")";
    sunday_title.Click += sunday_link_Click;
}

private void sunday_link_Click(object sender, RoutedEventArgs e)
{
    this.Frame.Navigate(typeof(Player), publishingpoint_sunday);
}

所以,你有它。全新的Windows 8导航风格。对我而言,似乎不必要地复杂化。