Silverligh 4,VS 2010。
进行自定义控制。 (不仅仅是UserControl,而是公共类HandPart:Control,以及\ themes中的模板)
然后我使用帮助器片段创建一个新的DependencyProperty:
#region SomeDouble (DependencyProperty)
/// <summary>
/// A description of the property.
/// </summary>
public Double SomeDouble
{
get { return (Double)GetValue(SomeDoubleProperty); }
set { SetValue(SomeDoubleProperty, value); }
}
public static readonly DependencyProperty SomeDoubleProperty =
DependencyProperty.Register("SomeDouble", typeof(Double), typeof(HandPart),
new PropertyMetadata(0));
#endregion
因此,解决方案正在编译没有任何错误和消息,但它没有启动。 当我创建DependencyProperty时,例如,Int类型insted Double或Single,它工作正常。
浮动有什么问题,(功能?)?为什么我不能用浮点类型创建DP?
答案 0 :(得分:6)
您传递给0
构造函数的PropertyMetadata
参数将被解释为int
而不是double
。请尝试传递0.0
:
public static readonly DependencyProperty SomeDoubleProperty =
DependencyProperty.Register("SomeDouble", typeof(Double),
typeof(HandPart), new PropertyMetadata(0.0));