这是我的XAML:
<?xml version="1.0" encoding="UTF-8"?>
<TemplatedView xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:control="clr-namespace:Core.View.Control"
x:Class="Core.View.Control.MyButton">
<TemplatedView.Resources>
<ResourceDictionary>
<ControlTemplate x:Key="MyButtonTemplate">
<Grid BackgroundColor="Teal">
<!-- other irrelevant stuff. Trust me, it's irrelevant. -->
<Grid x:Name="MyGrid" Grid.Row="1" ColumnSpacing="0" BackgroundColor="{TemplateBinding Parent.BGCol}"> <!-- Can't get this TemplateBinding to work -->
<!-- If I change the above to something static, like BackgroundColor="Orange", it works. -->
</ControlTemplate>
<Style TargetType="TemplatedView" x:Key="MyButtonStyle">
<Setter Property="ControlTemplate" Value="{StaticResource MyButtonTemplate}" />
</Style>
我的代码背后:
namespace Core.View.Control
{
public partial class MyButton : TemplatedView
{
public static readonly BindableProperty BGColProperty =
BindableProperty.Create("BGCol", typeof(Color), typeof(MyButton), Color.Orange);
public Color BGCol
{
get
{
return (Color)GetValue(BGColProperty);
}
set
{
SetValue(BGColProperty, value);
}
}
public MyButton()
{
InitializeComponent();
Style = (Style)this.Resources["MyButtonStyle"];
}
// ...
如果我将BGColproperty
更改为字符串类型,并在任何地方使用"Orange"
而不是Color.Orange
......它仍然无效。
如何将Grid
中ControlTemplate
控件的背景属性绑定到BGCol
?
[忽略] 不相关的文字,因为SO仍然不高兴,说太多的代码。 有时带内联注释的代码(我已经完成)几乎可以解释它比任何数量的文本更好,并且您认为像SO这样的网站会理解这一点,但不是。 更加喋喋不休。 还有更多。 哦,我们走了,这似乎已经足够了。 [/忽略]
答案 0 :(得分:1)
<Grid x:Name="MyGrid" BackgroundColor="{TemplateBinding BGCol}" >
模板绑定转到控件,因此Parent只会让它感到困惑。