DrawingContext.DrawRectangle 方法

定义

绘制矩形。

重载

DrawRectangle(Brush, Pen, Rect)

使用指定的 BrushPen 绘制一个矩形。 pen 和 brush 都可以为 null

DrawRectangle(Brush, Pen, Rect, AnimationClock)

使用指定的 BrushPen 绘制一个矩形并应用指定的动画时钟。

DrawRectangle(Brush, Pen, Rect)

使用指定的 BrushPen 绘制一个矩形。 pen 和 brush 都可以为 null

public:
 abstract void DrawRectangle(System::Windows::Media::Brush ^ brush, System::Windows::Media::Pen ^ pen, System::Windows::Rect rectangle);
public abstract void DrawRectangle (System.Windows.Media.Brush brush, System.Windows.Media.Pen pen, System.Windows.Rect rectangle);
abstract member DrawRectangle : System.Windows.Media.Brush * System.Windows.Media.Pen * System.Windows.Rect -> unit
Public MustOverride Sub DrawRectangle (brush As Brush, pen As Pen, rectangle As Rect)

参数

brush
Brush

用于填充矩形的画笔。 此参数可选,而且可以为 null。 如果 brush 为 null,则不绘制任何填充。

pen
Pen

用于绘制矩形笔画的笔。 此参数可选,而且可以为 null。 如果 pen 为 null,则不绘制任何笔划。

rectangle
Rect

要绘制的矩形。

注解

画笔和笔都可以 null。 如果画笔为 null画笔,则不执行填充。 如果笔是 null,则不执行笔划。 如果笔和画笔均为 null画笔,则绘图不可见。

适用于

DrawRectangle(Brush, Pen, Rect, AnimationClock)

使用指定的 BrushPen 绘制一个矩形并应用指定的动画时钟。

public:
 abstract void DrawRectangle(System::Windows::Media::Brush ^ brush, System::Windows::Media::Pen ^ pen, System::Windows::Rect rectangle, System::Windows::Media::Animation::AnimationClock ^ rectangleAnimations);
public abstract void DrawRectangle (System.Windows.Media.Brush brush, System.Windows.Media.Pen pen, System.Windows.Rect rectangle, System.Windows.Media.Animation.AnimationClock rectangleAnimations);
abstract member DrawRectangle : System.Windows.Media.Brush * System.Windows.Media.Pen * System.Windows.Rect * System.Windows.Media.Animation.AnimationClock -> unit
Public MustOverride Sub DrawRectangle (brush As Brush, pen As Pen, rectangle As Rect, rectangleAnimations As AnimationClock)

参数

brush
Brush

用于填充矩形的画笔。 此参数可选,而且可以为 null。 如果 brush 为 null,则不绘制任何填充。

pen
Pen

用于绘制矩形笔画的笔。 此参数可选,而且可以为 null。 如果 pen 为 null,则不绘制任何笔划。

rectangle
Rect

要绘制的矩形。

rectangleAnimations
AnimationClock

用于对矩形的大小和维数进行动画处理的时钟;如果没有动画,则为 null。 此时钟必须基于能够对 AnimationTimeline 对象进行动画处理的 Rect 来创建。

注解

画笔和笔都可以 null。 如果画笔为 null画笔,则不执行填充。 如果笔是 null,则不执行任何点球。 如果笔和画笔均为 null画笔,则绘图不可见。

适用于