diff --git a/dotnet-desktop-guide/framework/winforms/how-to-create-event-handlers-at-run-time-for-windows-forms.md b/dotnet-desktop-guide/framework/winforms/how-to-create-event-handlers-at-run-time-for-windows-forms.md index c101101..47ccc73 100644 --- a/dotnet-desktop-guide/framework/winforms/how-to-create-event-handlers-at-run-time-for-windows-forms.md +++ b/dotnet-desktop-guide/framework/winforms/how-to-create-event-handlers-at-run-time-for-windows-forms.md @@ -66,8 +66,6 @@ In addition to creating events using the Windows Forms Designer in Visual Studio button1->Click += gcnew System::EventHandler(this, &Form1::button1_Click); ``` - The method demonstrated in the Visual Basic code above establishes a click event handler for the button. - ## See also - [Creating Event Handlers in Windows Forms](creating-event-handlers-in-windows-forms.md)