添加Microsoft.Phone.dll以使用Applicationbar类提供“无法在模块mscorlib.dll中找到类型System.SystemException”错误

时间:2016-06-30 17:51:39

标签: c# xaml windows-phone-8.1

我目前正在开发适用于Windows Phone 8.1的应用。添加Microsoft.Phone.dll程序集以便能够使用ApplicationBar和ApplicationBarIconButton类之后,我遇到以下内容 错误:

Cannot find type System.SystemException in module mscorlib.dll.

在阅读类似问题(如this)后,似乎Windows Phone不接受第三方库。

我应该如何在C#代码中使用上述类?

1 个答案:

答案 0 :(得分:0)

QPixmap pix(path); QByteArray bytes, data; QBuffer buffer(&bytes); if(!buffer.open(QIODevice::WriteOnly)) { return; } pix.save(&buffer, "JPG"); 旧样式(Silverlight)Windows Phone Library。 在通常的Windows Phone应用商店应用中,您应该使用Microsoft.Phone.dll组件。

示例:How it works

<强>更新

CommandBar

和C#代码

<Page.BottomAppBar>
    <CommandBar x:Name="bottomCommandBar">
        <CommandBar.PrimaryCommands>
            <AppBarButton Icon="Account"/>
        </CommandBar.PrimaryCommands>
    </CommandBar>
</Page.BottomAppBar>