如何将自定义控件引用到XAML文件中

时间:2019-01-09 02:23:49

标签: xaml xamarin.forms custom-controls

使用reference to this,我无法添加自定义控件。我在一个共享项目中做了一个自定义控件,它引用了Android和iOS。问题是,我无法实现视图,因为它导致此错误:

The type 'control:CircleImage' was not found. Verify that you are not missing an assembly reference and that all referenced assemblies have been built.

这是我在XAML中使用的代码。


    <ViewCell xmlns="http://xamarin.com/schemas/2014/forms" 
        xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
        xmlns:control = "clr-namespace:ProjectName.model" 
        x:Class="ProjectName.layout.MessageSender">
        <ViewCell.View>
            <Grid>
                <control:CircleImage/>

我尝试查找如何添加引用,但无法引用共享库。当我查看link并将CircleImage.cs移到PortableClassLibrary(旧版)时,它没有引用Xamarin.Forms,因此所有BindingProperty和代码之后都是红色。

那么,如何将自定义控件添加到此XAML文件中?

0 个答案:

没有答案