在Windows RT中打开页面时显示消息框

时间:2015-04-04 11:44:40

标签: c# winrt-xaml

如何在页面打开时显示消息框?这是我的WP项目的代码,但我想知道它的WinRT版本。

    protected override void OnNavigatedTo(System.Windows.Navigation.NavigationEventArgs e)
    {
        base.OnNavigatedTo(e);

        CustomMessageBox messageBox = new CustomMessageBox()
        {
            Caption = "",
            Message = "",
            LeftButtonContent = "ok"
        };

        messageBox.Show();
    }