如何打开对话框来浏览Xamarin.Forms中的文件?

时间:2015-06-16 11:44:45

标签: xamarin xamarin.forms dialog

当我执行时: 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的引用。

1 个答案:

答案 0 :(得分:2)

在Xamarin.Forms中打开文件浏览器没有简单的方法,因为iOS等环境不允许浏览文件系统。

以下链接显示了如何在Android上实现您想要的内容的方法。

http://developer.xamarin.com/recipes/android/data/files/browse_files/