假设我有一个这样定义的附加属性:
public static string GetMyProperty(DependencyObject obj)
{
return (string)obj.GetValue(MyPropertyProperty);
}
public static void SetMyProperty(DependencyObject obj, string value)
{
obj.SetValue(MyPropertyProperty, value);
}
// Using a DependencyProperty as the backing store for MyProperty. This enables animation, styling, binding, etc...
public static readonly DependencyProperty MyPropertyProperty =
DependencyProperty.RegisterAttached("MyProperty", typeof(string), typeof(MyClass), new UIPropertyMetadata(0));
我可以为属性标识符 ( MyPropertyProperty
) 和访问器 ( GetMyProperty
and SetMyProperty
) 编写文档,但我不知道将MyClass.MyProperty 附加属性的文档放在哪里,因为它不是实际的代码元素。
MSDN 库包含此类文档(参见示例Grid.Row
),因此它必须是可能的......
我应该将附加属性的 XML 文档注释放在哪里?