不指定填充的 C# DrawElipse 方法
C# DrawElipse Method without specifying a fill
简单问题 - 如何使用绘图上下文制作椭圆但不填充颜色?
目前我有:
drawingContext.DrawEllipse(drawBrush, null, jointPoints[jointType], JointThickness, JointThickness);
这为我提供了一个椭圆,在使用 Kinect 跟踪的每个关节位置都填充了颜色。
我想显示一个没有填充的外圈,我该怎么做?
比如上图这样的外圈要怎么制作?
只需为画笔传递 null
,然后传递所需颜色的 Pen
。
来自MSDN:
The brush with which to fill the ellipse. This is optional, and can be null. If the brush is null, no fill is drawn.
简单问题 - 如何使用绘图上下文制作椭圆但不填充颜色?
目前我有:
drawingContext.DrawEllipse(drawBrush, null, jointPoints[jointType], JointThickness, JointThickness);
这为我提供了一个椭圆,在使用 Kinect 跟踪的每个关节位置都填充了颜色。
我想显示一个没有填充的外圈,我该怎么做?
比如上图这样的外圈要怎么制作?
只需为画笔传递 null
,然后传递所需颜色的 Pen
。
来自MSDN:
The brush with which to fill the ellipse. This is optional, and can be null. If the brush is null, no fill is drawn.