Udostępnij za pośrednictwem


DynamicRenderer.OnDrawingAttributesReplaced Metoda

Definicja

Występuje, gdy DrawingAttributes właściwość ulegnie zmianie.

protected:
 virtual void OnDrawingAttributesReplaced();
protected virtual void OnDrawingAttributesReplaced ();
abstract member OnDrawingAttributesReplaced : unit -> unit
override this.OnDrawingAttributesReplaced : unit -> unit
Protected Overridable Sub OnDrawingAttributesReplaced ()

Przykłady

Poniższy przykład zastępuje metodę 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

Uwagi dotyczące dziedziczenia

Podczas zastępowania OnDrawingAttributesReplaced() w klasie pochodnej należy wywołać metodę klasy OnDrawingAttributesReplaced() bazowej.

Dotyczy