自定义依赖项 属性 在具有 TemplatedParent 的 UWP 模板中不起作用
Custom dependency property not working in UWP template with TemplatedParent
我有以下数据模板:
<DataTemplate x:Key="ListViewItemTemplate">
<Grid x:Name="grid">
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>
<TextBlock Grid.Column="0"
Margin="5"
Foreground="Black"
Text="{Binding ActualText}"
TextWrapping="WrapWholeWords" />
<my:CustomSelector Grid.Column="1"
ActualValue="{Binding Value, Mode=TwoWay,
RelativeSource={RelativeSource TemplatedParent}}" />
<ComboBox x:Name="cbox"
Grid.Column="2"
Width="90"
Margin="3"
VerticalAlignment="Center"
ItemsSource="{StaticResource data}"
SelectedIndex="{Binding Value,
Mode=TwoWay}" />
</Grid>
</DataTemplate>
这是它的代码隐藏文件:
public sealed partial class CustomSelector : StackPanel
{
public int ActualValue
{
get { return (int)GetValue(ActualValueProperty); }
set { SetValue(ActualValueProperty, value); }
}
// Using a DependencyProperty as the backing store for ActualValue. This enables animation, styling, binding, etc...
public static readonly DependencyPropertyActualValueProperty =
DependencyProperty.Register("ActualValue", typeof(int), typeof(CustomSelector), new PropertyMetadata(0, (x, y) =>
{
CustomSelector cc = x as CustomSelector;
int content = (int)y.NewValue;
cc.ActualValue = content;
}));
public CustomSelector()
{
this.InitializeComponent();
DataContext = this;
}
}
TextBlock
和 ComboBox
中的绑定工作正常,因此 DataContext 是正确的。
我了解到模板中的 自定义绑定 只有在 RelativeSource
设置为 TemplatedParent
时才有效。
不幸的是,我的自定义控件的 ActualValue
属性 始终设置为其默认值(这显然是错误的)并且当我更改值时,它始终从 0 开始。
对此我还能做些什么?
我犯了一个错误,覆盖了自定义控件的 DataContext,所以找不到 Value
属性 在其上下文中。
因此,我删除了以下行:
DataContext = this;
现在它按预期工作了。
我有以下数据模板:
<DataTemplate x:Key="ListViewItemTemplate">
<Grid x:Name="grid">
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>
<TextBlock Grid.Column="0"
Margin="5"
Foreground="Black"
Text="{Binding ActualText}"
TextWrapping="WrapWholeWords" />
<my:CustomSelector Grid.Column="1"
ActualValue="{Binding Value, Mode=TwoWay,
RelativeSource={RelativeSource TemplatedParent}}" />
<ComboBox x:Name="cbox"
Grid.Column="2"
Width="90"
Margin="3"
VerticalAlignment="Center"
ItemsSource="{StaticResource data}"
SelectedIndex="{Binding Value,
Mode=TwoWay}" />
</Grid>
</DataTemplate>
这是它的代码隐藏文件:
public sealed partial class CustomSelector : StackPanel
{
public int ActualValue
{
get { return (int)GetValue(ActualValueProperty); }
set { SetValue(ActualValueProperty, value); }
}
// Using a DependencyProperty as the backing store for ActualValue. This enables animation, styling, binding, etc...
public static readonly DependencyPropertyActualValueProperty =
DependencyProperty.Register("ActualValue", typeof(int), typeof(CustomSelector), new PropertyMetadata(0, (x, y) =>
{
CustomSelector cc = x as CustomSelector;
int content = (int)y.NewValue;
cc.ActualValue = content;
}));
public CustomSelector()
{
this.InitializeComponent();
DataContext = this;
}
}
TextBlock
和 ComboBox
中的绑定工作正常,因此 DataContext 是正确的。
我了解到模板中的 自定义绑定 只有在 RelativeSource
设置为 TemplatedParent
时才有效。
不幸的是,我的自定义控件的 ActualValue
属性 始终设置为其默认值(这显然是错误的)并且当我更改值时,它始终从 0 开始。
对此我还能做些什么?
我犯了一个错误,覆盖了自定义控件的 DataContext,所以找不到 Value
属性 在其上下文中。
因此,我删除了以下行:
DataContext = this;
现在它按预期工作了。