私はそのように定義された添付プロパティを持っていると仮定すると:添付されたプロパティのXMLドキュメンテーションコメントはどこに置かれますか?
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
とSetMyProperty
)のドキュメントを書くことができますが、私はどこに置くには考えていますMyClass.MyProperty添付プロパティのドキュメントです。実際のコード要素ではないためです。
ことが可能でなければならないので、MSDNライブラリは、(例えばGrid.Row
を参照)、このようなドキュメントが含まれてい...
はどこ添付プロパティのためのXMLドキュメントコメントを置く必要がありますか?
ニース...私はそれをチェックします、ありがとう! –
まさに私が探していたもの...ありがとう –