将可见帧参考传递给设置弹出窗口

时间:2012-10-26 21:06:05

标签: windows-8

在我的Windows 8应用程序中,单击魅力条上的链接时会显示一个弹出窗口。如何将当前应用程序可见帧传递给弹出窗口?我想根据他们称之为魅力栏并打开设置来显示和执行不同的操作。

要创建我的设置弹出窗口,请执行以下操作:

void onCommandsRequested(SettingsPane settingsPane, SettingsPaneCommandsRequestedEventArgs eventArgs)
{
    UICommandInvokedHandler handler = new UICommandInvokedHandler(onSettingsCommand);

    SettingsCommand generalCommand = new SettingsCommand("SettingId", "Setting", handler);
    eventArgs.Request.ApplicationCommands.Add(generalCommand);

}

void onSettingsCommand(IUICommand command)
{
    // Create a SettingsFlyout the same dimenssions as the Popup.
    MyApp.Common.LayoutAwarePage mypane = new SettingsFlyout;
}

1 个答案:

答案 0 :(得分:0)

我认为您可以将当前帧作为DataContext传递给弹出窗口。

var popup = new Popup();
popup.DataContext = this;