情况如下:
我创建了一个自定义控件,其中包含一个 ImageView。我希望能够在使用自定义控件时从 XAML 绑定此子视图的属性 (IsVisible),但不确定如何在父自定义控件中公开此属性。
我想设置这样的东西(其中 IsLeftImageVisible 应该是暴露的子控件属性):
<controls:StepIndicator IsLeftImageVisible="{Binding IsValid}" />
现在我已经做了这样的事情,但我真的不喜欢它:
public static readonly BindableProperty IsLeftButtonVisibleProperty =
BindableProperty.Create<StepIndicator, bool>
(x => x.IsLeftImageVisible, true, propertyChanged: ((
bindable, value, newValue) =>
{
var control = (StepIndicator)bindable;
control.ImageLeft.IsVisible = newValue;
}));
public bool IsLeftImageVisible
{
get { return (bool)GetValue(IsLeftImageVisibleProperty); }
set { SetValue(IsLeftImageVisibleProperty, value); }
}
有没有办法更优雅地做到这一点?