Sdílet prostřednictvím


DynamicRenderer.OnDrawingAttributesReplaced Metoda

Definice

Nastane, když se DrawingAttributes vlastnost změní.

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

Příklady

Následující příklad přepíše metodu 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

Poznámky pro dědice

Při přepsání OnDrawingAttributesReplaced() v odvozené třídě nezapomeňte volat metodu základní třídy OnDrawingAttributesReplaced() .

Platí pro