我目前正在开发适用于Windows Phone 8.1的应用。添加Microsoft.Phone.dll程序集以便能够使用ApplicationBar和ApplicationBarIconButton类之后,我遇到以下内容 错误:
Cannot find type System.SystemException in module mscorlib.dll.
在阅读类似问题(如this)后,似乎Windows Phone不接受第三方库。
我应该如何在C#代码中使用上述类?
答案 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>