私は通常、次のように WPF ユーザー コントロールのカスタム プロパティに description 属性を使用します。
[Category("Features"), Description("You can setup image width ratio in double type")]
public double ImageWidthRatio
{
get { return (double)GetValue(ImageWidthRatioProperty); }
set { SetValue(ImageWidthRatioProperty, value); }
}
// Using a DependencyProperty as the backing store for ImageWidthRatioProperty. This enables animation, styling, binding, etc...
public static readonly DependencyProperty ImageWidthRatioProperty =
DependencyProperty.Register("ImageWidthRatio", typeof(double), typeof(TheControl), new UIPropertyMetadata(1.0));
この行[Category("Features"), Description("You can setup image width ratio")]
は、プロパティウィンドウでグループとともに説明を提供します。
しかし、Windows ストア アプリのユーザー コントロールです。それはノーと言いSystem.ComponentModel.DesriptionAttribute
ます。
WinRT の [プロパティ] ウィンドウにプロパティの説明を表示するにはどうすればよいですか?