0

我试图在我的 Contentview 中绑定 DogImage 源。我正在尝试构建可重用的视图对象,例如框架按钮。我只需要从 contentview 之外给他们图像和文本。我使用资源文件夹中的图像。

这是我的内容视图

<ContentView xmlns="http://xamarin.com/schemas/2014/forms" 
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             x:Class="PawsApp.Views.AboutMyDogViews.DogsBreedPicker"
             BindingContext="{Binding .}">
    <ContentView.Content>
        <StackLayout x:Name="breedStack"  Margin="30,2,30,2">
            <Frame  HeightRequest="64" CornerRadius="8" BorderColor="White" HasShadow="False" BackgroundColor="White" 
               VerticalOptions="FillAndExpand" Padding="18,0,18,0">
                <Frame.Content>
                    <StackLayout Orientation="Vertical" VerticalOptions="CenterAndExpand">
                        <Grid ColumnSpacing="18">
                            <Grid.ColumnDefinitions>
                                <ColumnDefinition Width="1*"></ColumnDefinition>
                                <ColumnDefinition Width="9*"></ColumnDefinition>
                            </Grid.ColumnDefinitions>
                            <Image x:Name="DogImage" Source="{Binding ImageSourceOf}"  Grid.Row="0" Grid.Column="0" ></Image>
                            <Label  x:Name="breedSelector" Text="Breed" FontSize="Medium" TextColor="#5f5d70" Grid.Row="0" Grid.Column="1">
                            </Label>
                        </Grid>
                    </StackLayout>
                </Frame.Content>
            </Frame>
        </StackLayout>
    </ContentView.Content>
</ContentView>

这是CS文件

public partial class DogsBreedPicker : ContentView
{
    public static readonly BindableProperty ImageSourceProperty =
        BindableProperty.Create("ImageSourceOf", typeof(ImageSource), typeof(DogsBreedPicker));

    public ImageSource ImageSourceOf
    {
        get { return GetValue(ImageSourceProperty) as ImageSource; }
        set { SetValue(ImageSourceProperty, value);}           
    }

    public DogsBreedPicker()
    {
        InitializeComponent ();
        BindingContext = ImageSourceOf;
    }
}

这就是我想要使用它的方式。

<views:DogsBreedPicker ImageSourceOf="dog" TextOf="Breed Selector" x:Name="DogBreed" ></views:DogsBreedPicker>
4

2 回答 2

0
Content.BindingContext = this;

解决了我的问题。但是有没有办法让它变得更好呢?请添加评论。

于 2019-03-01T10:39:51.990 回答
0

你在你的构造函数中设置你BindingContext的。ImageSourceOf无论如何,此时尚未设置属性,因此ImageSourceOf仍然是null. 但是,无论如何您都不需要BindingContext在这种情况下使用,因为您可以直接绑定到ImageSourceOf属性:

<ContentView xmlns="http://xamarin.com/schemas/2014/forms" 
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             x:Class="PawsApp.Views.AboutMyDogViews.DogsBreedPicker"
             x:Name="View">
      <!-- Elided all the other stuff -->
      <Image x:Name="DogImage" Source="{Binding ImageSourceOf, Source={x:Reference View}}"  Grid.Row="0" Grid.Column="0" />

</ContentView>

BindingContext从您的构造函数中删除分配。

为什么这行得通?

所有绑定的默认来源是BindingContext(传播到所有子视图的视图的)。无论如何,您绝不限于将BindingContext绑定作为绑定的源,而是可以将Source绑定设置为另一个对象。在这种情况下,我们通过名称引用视图(我们用 给了名称Viewx:Name="View"并将其用作 的绑定SourceImage。既然 的Path绑定是ImageSourceOfImage.Source就会被绑定到View.ImageSourceOf

于 2019-03-01T10:49:12.087 回答