EdgeMode 列舉
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
決定如何呈現非文字繪圖基本的邊緣。
public enum class EdgeMode
public enum EdgeMode
type EdgeMode =
Public Enum 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)
備註
文字物件一律會使用反鋸齒顯示,而且不會受到設定邊緣模式值的影響。 非文字繪圖基本類型的預設值,例如 Ellipse 和 Polygon 是 Unspecified
。
當您設定視覺物件的邊緣模式值時,該視覺物件的所有子繪圖基本類型都會設定為相同的 EdgeMode
值。