AdornerColors.RailFillBrush 属性

[本文档仅供预览,在以后的发行版中可能会发生更改。包含的空白主题用作占位符。]

获取用于绘制围栏的填充画笔。

命名空间:  Microsoft.Windows.Design.Interaction
程序集:  Microsoft.Windows.Design.Interaction(在 Microsoft.Windows.Design.Interaction.dll 中)

语法

声明
Public Shared ReadOnly Property RailFillBrush As Brush
public static Brush RailFillBrush { get; }
public:
static property Brush^ RailFillBrush {
    Brush^ get ();
}
static member RailFillBrush : Brush
static function get RailFillBrush () : Brush

属性值

类型:System.Windows.Media.Brush
一个 Brush,它表示用于在 WPF Designer 中绘制围栏的标准画笔。

示例

下面的代码示例演示如何使用 AdornerColors 类将 Slider 控件的 Background 设置为 RailFillBrush 指定的颜色。 有关更多信息,请参见 演练:在控件内部实现一个轨道

' Set the slider's background to the rail fill color.
skewSlider.Background = AdornerColors.RailFillBrush
// Set the slider's background to the rail fill color.
skewSlider.Background = AdornerColors.RailFillBrush;

.NET Framework 安全性

请参见

参考

AdornerColors 类

Microsoft.Windows.Design.Interaction 命名空间

AdornerPanel

AdornerFonts

PrimarySelectionAdornerProvider

其他资源

演练:创建设计时装饰器

演练:在控件内部实现一个轨道

装饰器体系结构