我试图让Zumero DataGrid和Xamarin UWP一起工作。我已经按照我能找到的所有文档进行了操作,不幸的是我仍然在App.g.i.cs中引发了以下异常:
#if DEBUG && !DISABLE_XAML_GENERATED_BREAK_ON_UNHANDLED_EXCEPTION
UnhandledException += (sender, e) =>
{
if (global::System.Diagnostics.Debugger.IsAttached)
global::System.Diagnostics.Debugger.Break();
};
#endif
通常我可以使用调试器自己弄清楚这些事情,但我必须继续这样做:
Message "Object reference not set to an instance of an object."
和此:
at Xamarin.Forms.Platform.UWP.TaskExtensions.<>c.<WatchForError>b__2_1(Object e)
at System.Threading.WinRTSynchronizationContext.Invoker.InvokeCore()
请注意,数据网格在Android上完美运行 - 而不是在我的UWP应用程序上。
有什么建议吗?
答案 0 :(得分:0)
目前,Zumero DataGrid还没有为UWP做好准备,我已经尝试了但是得到了这个例外:
无法解析Assembly或Windows Metadata文件 &#39; Xamarin.Forms.Platform.WinRT.dll&#39;
根据我的经验,这是因为它在nuget包中缺少Xamarin.Forms UWP渲染器。以下是其他存储库的类似问题:Xamarin.Forms nuget lacks Windows UWP support (currently only WinRT and SL)
基于open source code,它仅支持Windows平台的 Windows 8.1 / Windows Phone 8.1 / Windows phone 8.0
我建议您在repository
中提交功能请求