在 WPF 应用程序中, 如果我想创建一个矩形, 我开始在 XAML 中写入 :
<Rectangle Fill=
我输入了最后一个 < code_ / code > 字符后, 视觉工作室的 Intellisense 将为此 < code> Fill code > 属性给我一系列选项, 如 AliceBlue、 AntiqueWhite 等。 我发现这些常数来自类 < code> Brushes code >, 但本类定义的常数不会包含在该属性的选项列表中 。 所以我有两个问题 。
- property
Fill
is of typeBrush
. TypeBrush
is an ordinary type, and is not a enum type. How does Intellisense look for options for such a property? - Is it possible for Intellisense to consider objects defined outside the core assembly of WPF as options for a certain property?
谢谢 谢谢