我创建了一个自定义UserControl。遵循blog post我的控件代码隐藏看起来像这样:
public BasicGeoposition PinGeoposition
{
get { return (BasicGeoposition) GetValue(PropertyPinGeoposition); }
set { SetValueDp(PropertyPinGeoposition, value);}
}
public static readonly DependencyProperty PropertyPinGeoposition =
DependencyProperty.Register("PinGeoposition", typeof(BasicGeoposition), typeof(CustomMapControl), null);
public event PropertyChangedEventHandler PropertyChanged;
void SetValueDp(DependencyProperty property, object value, [System.Runtime.CompilerServices.CallerMemberName] String p = null)
{
ViewModel.SetMode(ECustomMapControlMode.Default);
SetValue(property, value);
if (PropertyChanged != null)
PropertyChanged(this, new PropertyChangedEventArgs(p));
}
使用我的控件:
<customControls:CustomMapControl Mode="ForImage" PinGeoposition="{Binding Geoposition, Mode=TwoWay}" Grid.Row="1"/>
最后,在我使用我的控件的ViewModel中,我有:
public BasicGeoposition Geoposition
{
get { return _geoposition; }
set
{
if (Set(ref _geoposition, value))
{
RaisePropertyChanged(() => Geoposition);
}
}
}
我希望ViewModel中Geoposition的每次更改都会反映在SetValueDp中。不幸的是,它不起作用。
答案 0 :(得分:3)
不确定Jerry Nixon试图在他的博客文章中做什么,因为他没有在任何地方分配他的SetValueDp
方法。
如果你想要它被调用,你可以这样做:
public static readonly DependencyProperty PropertyPinGeoposition =
DependencyProperty.Register("PinGeoposition", typeof(BasicGeoposition), typeof(CustomMapControl), new PropertyMetadata(null, SetPosition));
public BasicGeoposition PinGeoposition
{
get { return (BasicGeoposition) GetValue(PropertyPinGeoposition); }
set { SetValue(PropertyPinGeoposition, value);}
}
private static void SetPosition(DependencyObject sender, DependencyPropertyChangedEventArgs e)
{
var control = (CustomMapControl)sender;
var position = e.NewValue as BasicGeoposition;
// Do whatever
}
编辑:在阅读并重新阅读博客文章后,我想我已经倒退了(可能你也是如此)。从我现在的理解,SetValueDp
是一个帮助方法,只要你想改变依赖属性的值,你就应该调用它。这不是自动调用的。因此,如果您想要在修改DP时调用的方法,请检查我的解决方案。