0

在我的 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;
}
4

1 回答 1

0

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

var popup = new Popup();
popup.DataContext = this;
于 2012-10-26T21:34:22.960 回答