当我执行时:
OpenFileDialog dialog = new OpenFileDialog();
我收到以下错误:
基类或接口' System.ComponentModel.Component'在 assembly' System,Version = 4.0.0.0,Culture = neutral, 公钥= b77a5c561934e089'由类型引用 ' System.Windows.Forms.CommonDialog'无法解决c:\ Program 文件(x86)\参考 组件\微软\ Framework.NETFramework \ V4.5 \ System.Windows.Forms.dll中
P.S。:我在解决方案的参考中添加了对汇编System.Windows.Forms.dll
的引用。
答案 0 :(得分:2)
在Xamarin.Forms中打开文件浏览器没有简单的方法,因为iOS等环境不允许浏览文件系统。
以下链接显示了如何在Android上实现您想要的内容的方法。
http://developer.xamarin.com/recipes/android/data/files/browse_files/