Поделиться через


InkEdit.OnHandleCreated - метод

Обновлен: Ноябрь 2007

Allows derived classes to modify the default behavior of the HandleCreated event.

Пространство имен:  Microsoft.Ink
Сборка:  Microsoft.Ink (в Microsoft.Ink.dll)

Синтаксис

'Декларация
Protected Overrides Sub OnHandleCreated ( _
    e As EventArgs _
)
'Применение
Dim e As EventArgs

Me.OnHandleCreated(e)
protected override void OnHandleCreated(
    EventArgs e
)
protected:
virtual void OnHandleCreated(
    EventArgs^ e
) override
protected void OnHandleCreated(
    EventArgs e
)
protected override function OnHandleCreated(
    e : EventArgs
)

Параметры

Заметки

Raising an event invokes the event handler through a delegate.

This method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.

When overriding this method in a derived class, call the OnHandleCreated method of the base class so that registered delegates receive the event.

Платформы

Windows Vista

Среды .NET Framework и .NET Compact Framework поддерживают не все версии каждой платформы. Поддерживаемые версии перечислены в разделе Требования к системе для .NET Framework.

Сведения о версии

.NET Framework

Поддерживается в версии: 3.0

См. также

Ссылки

InkEdit Класс

InkEdit - члены

Microsoft.Ink - пространство имен

Другие ресурсы

System.Windows.Forms.Control.HandleCreated