我收到错误 - 找不到类型或命名空间名称'SettingsPane'(您是否缺少using指令或程序集引用?)

时间:2016-10-11 19:57:00

标签: uwp

我正在尝试将现有的8.1应用移植到UWP。

我收到以下错误:The type or namespace name 'SettingsPane' could not be found (are you missing a using directive or an assembly reference?)

这是一个类似于我收到此错误的函数的函数:

void MainPage_Legal(SettingsPane sender, SettingsPaneCommandsRequestedEventArgs args)
    {
        args.Request.ApplicationCommands.Add(new SettingsCommand("legal", "Legal", OpenLegal));
    }.

有人可以建议解决方案或解决方法吗?

1 个答案:

答案 0 :(得分:0)

我在Microsoft的SettingsPane文档页面上找到了这个:

  

[在Windows 10之后发布时,SettingsPane可能会被更改或不可用。而不是使用SettingsPane,将设置选项集成到应用程序体验中。有关详情,请参阅应用设置指南。]

SettingsPane Documentation

The Guidelines for app settings

我希望它有点帮助!