gpt4 book ai didi

windows-8 - 在 Windows 8 Metro (C#) 中向设置 super 按钮添加下拉菜单

转载 作者:行者123 更新时间:2023-12-02 22:42:35 25 4
gpt4 key购买 nike

我找到了如何向设置 super 按钮添加命令(看起来像链接):

SettingsPane.GetForCurrentView().CommandsRequested += MainPage_CommandsRequested;

void MainPage_CommandsRequested(SettingsPane sender, SettingsPaneCommandsRequestedEventArgs args)
{
var cmd = new SettingsCommand("feedback", "Send feedback", new Windows.UI.Popups.UICommandInvokedHandler(x =>
{
App.ShowSendFeedback();
}));

args.Request.ApplicationCommands.Clear();
args.Request.ApplicationCommands.Add(cmd);
}

现在我需要在设置 super 按钮中添加用于语言选择的下拉列表。我怎样才能实现它?

最佳答案

另见 this blog post ,其中解释了如何在选择其中一项设置时显示自定义用户控件。

基本上,他将屏幕外的用户控件移到屏幕上,然后在用户交互完成后再次隐藏它。对我来说,这感觉有点像 hack-ish...但我想这就是 WinRT 现在的处境。

关于windows-8 - 在 Windows 8 Metro (C#) 中向设置 super 按钮添加下拉菜单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10557601/

25 4 0