我从这里关注了一个关于依赖对象的教程:http: //tech.pro/tutorial/745/wpf-tutorial-introduction-to-dependency-properties
然而,我仍然有些困惑。我创建了以下课程,纯粹是为了我自己的学习目的,没有实际用途:
namespace DPTest
{
class Audio : DependencyObject
{
public static readonly DependencyProperty fileTypeProperty = DependencyProperty.Register("fileType", typeof(String), typeof(Audio),
new PropertyMetadata("No File Type", fileTypeChangedCallback, fileTypeCoerceCallback), fileTypeValidationCallback);
public String fileType
{
get
{
return (String)GetValue(fileTypeProperty);
}
set
{
SetValue(fileTypeProperty, value);
}
}
private static void fileTypeChangedCallback(DependencyObject obj, DependencyPropertyChangedEventArgs e)
{
Console.WriteLine(e.OldValue + " - " + e.NewValue);
}
private static object fileTypeCoerceCallback(DependencyObject obj, object o)
{
String s = o as String;
if (s.Length > 0)
{
s = s.Substring(0, 8);
}
return s;
}
private static bool fileTypeValidationCallback(object value)
{
return value != null;
}
}
}
几个问题:
- 为什么属性是静态的?我不完全理解它是否意味着在对象级别存储一个值。
- Coerce 回调有什么作用,为什么包含它?
- 我上课的目的是什么,我会在哪里使用它?