最初にコードを提供し、その後で質問します。
namespace LinearGradientBrushBinding
{
public partial class LinearGradBrush : UserControl
{
public LinearGradBrush()
{
InitializeComponent();
}
class LinearGradBrushProp : DependencyObject
{
public static DependencyProperty _background;
static void BackgroundBrush()
{
_background = DependencyProperty.Register(
"_background", typeof(Brush), typeof(LinearGradBrushProp));
}
[Description("CuloareBG"), Category("Z")]
public Brush Background
{
get { return (Brush)GetValue(_background); }
set { SetValue(_background, value); }
}
}
}
}
ご覧のとおり、クラスを持つ UserControl があります。私の質問は、コントロールの [プロパティ] ウィンドウ (UserControl.Xaml の右側) にブラシが含まれるカテゴリ Z が表示されない理由です。