我从官方Xamarin页面尝试this simple example,其中包含模板绑定,如:
<ControlTemplate x:Key="TealTemplate">
<Grid>
<Label Text="{TemplateBinding Parent.HeaderText}" />
<Label Text="{TemplateBinding Parent.FooterText}" />
</Grid>
</ControlTemplate>
但是,我总是通过将示例代码复制到Visual Studio来得到错误。:
有人能给我一个简短的例子,说明如何从ControlTemplate中绑定到模板化控件的属性,无论是绑定上下文还是控件本身?
答案 0 :(得分:0)
我没有用'父母'解决这个问题。但对于我的项目,我使用:
{TemplateBinding BindingContext.IsBusy}
在使用ControlTemplate的页面中,我还使用ViewModel并将具有IsBusy属性的ViewModel绑定到页面。