Xamarin:无法加载程序集XLabs.Forms.Control FileNotFoundException错误

时间:2016-08-01 18:19:45

标签: xaml xamarin xamarin.forms

我试图在我的内容页面中使用ImageButton控件。我添加了' XLabs.Forms.Controls'来自nuget的包裹。但是在我的xaml中它会抛出FileNotFoundException错误。

  

System.IO.FileNotFoundException:无法加载文件或程序集   ' XLabs.Forms.Controls'或其中一个依赖项。系统不能   找到指定的文件。

我已将命名空间定义为我的xaml,如下所示:

{{1}}

1 个答案:

答案 0 :(得分:5)

我也遇到过这个问题,我通过实例化从XLabs.Forms.Controls包到xaml后面的代码的控制类来解决它:

public HomePage : ContentPage
{
    ImageButton ib = new ImageButton();
    InitializeComponent ();
}

这对我有用。