DynamicRenderer.OnDrawingAttributesReplaced 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
發生於 DrawingAttributes 屬性變更時。
protected:
virtual void OnDrawingAttributesReplaced();
protected virtual void OnDrawingAttributesReplaced ();
abstract member OnDrawingAttributesReplaced : unit -> unit
override this.OnDrawingAttributesReplaced : unit -> unit
Protected Overridable Sub OnDrawingAttributesReplaced ()
範例
下列範例會覆寫 OnDrawingAttributesReplaced 方法。
protected override void OnDrawingAttributesReplaced()
{
base.OnDrawingAttributesReplaced();
MessageBox.Show(this.DrawingAttributes.Color.ToString());
}
Protected Overrides Sub OnDrawingAttributesReplaced()
MyBase.OnDrawingAttributesReplaced()
MessageBox.Show(Me.DrawingAttributes.Color.ToString())
End Sub
給繼承者的注意事項
在 OnDrawingAttributesReplaced() 衍生類別中覆寫時,請務必呼叫基類的 OnDrawingAttributesReplaced() 方法。