首先我会给你我的代码,然后我会问我的问题。
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。