我试图在XamarinForms PCL项目中创建一个公共自定义控件,它相当于Windows 8 / RT中的UserControl。
这是我到目前为止所拥有的。
首先,我在继承自ContentView的控件中创建了bindable属性:
public static readonly BindableProperty TitleProperty =
BindableProperty.Create<MyCustomControl, string> (
p => p.Title, defaultValue: "NO TITLE", defaultBindingMode: BindingMode.TwoWay,
validateValue: null,
propertyChanged: (bindableObject, oldValue, newValue) =>
{
if (bindableObject != null)
{
}
Logger.Instance.WriteLine ("TITLE PROPERTY CHANGED: OldValue = " + oldValue + " , NewValue = " + newValue);
});
public string Title { get { return (string)GetValue (TitleProperty); } set { SetValue (TitleProperty, value); } }
然后我想在XAML中的标签中使用它:
<Label Text="{TemplateBinding Title}" />
但是,TemplateBinding MarkupExtension不存在,所以我得到了一个XamlParseException。
我已经可以想到一个使用x命名标签的解决方法:Name =&#34; MyLabel&#34;并使用newValue更改propertyChanged委托中的Text值,但是有更好的方法吗?
我不需要此控件的自定义渲染器,并希望尽可能在XAML中完成所有操作。提前谢谢!
更新:皮特回答了。只需使用{Binding}并正确设置BindingContext。
这是我如何让它发挥作用。
var pageContent = new CustomControl ();
pageContent.SetBinding (CustomControl.TitleProperty, new Binding(path: "Title"));
pageContent.BindingContext = new {Title = "This is the title that's databound!"};
看起来不像BindableProperty中的默认值..
答案 0 :(得分:1)
我不确定这是否有帮助?
<Label Text="{Binding Title}"/>
还记得设置BindingContext
吗?