EdgeMode 枚举

定义

确定非文本绘图基元的边缘的呈现方式。

public enum class EdgeMode
public enum EdgeMode
type EdgeMode = 
Public Enum EdgeMode
继承
EdgeMode

字段

Aliased 1

将非文本绘图基元的边缘呈现为锯齿边缘。

Unspecified 0

未指定边缘模式。 请勿更改当前的非文本绘图基元的边缘模式。 这是默认值。

示例

以下示例演示如何使用 RenderOptions.SetEdgeMode 该方法将绘图基元的边缘模式设置为 Aliased

// Set the edge mode to aliased for the visual and any descendant drawing primitives it has.
RenderOptions.SetEdgeMode((DependencyObject)myVisual, EdgeMode.Aliased);
' Set the edge mode to aliased for the visual and any descendant drawing primitives it has.
RenderOptions.SetEdgeMode(CType(myVisual, DependencyObject), EdgeMode.Aliased)

注解

始终使用抗锯齿显示文本对象,并且不受设置边缘模式值的影响。 非文本绘图基元的默认值,如EllipsePolygonUnspecified

设置视觉对象的边缘模式值时,该视觉对象的所有子绘图基元都设置为相同的 EdgeMode 值。

适用于