DynamicRenderer.OnDrawingAttributesReplaced Yöntem
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Özellik değiştiğinde DrawingAttributes gerçekleşir.
protected:
virtual void OnDrawingAttributesReplaced();
protected virtual void OnDrawingAttributesReplaced ();
abstract member OnDrawingAttributesReplaced : unit -> unit
override this.OnDrawingAttributesReplaced : unit -> unit
Protected Overridable Sub OnDrawingAttributesReplaced ()
Örnekler
Aşağıdaki örnek yöntemini geçersiz kılar 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
Devralanlara Notlar
Türetilmiş bir sınıfta geçersiz kılma OnDrawingAttributesReplaced() sırasında temel sınıfın OnDrawingAttributesReplaced() yöntemini çağırdığınızdan emin olun.