spacer

Webref WebRef   Sitemap · Experts · Tools · Services · Newsletters · About i.com

home / experts / javascript / column117


JScript .NET, Part XI: Creating Windows Forms

Technical Lead
Thomson Reuters (Markets) LLC
US-NY-New York

Justtechjobs.com Post A Job | Post A Resume
Developer News
Microsoft Shows Off Silverlight 4, IE9 Plans
Metasploit Expands Vulnerability Test Framework
HyperCard Reborn?


Handling Click Events

In this page, we demonstrate adding an event handler to a button. We add this capability on top of Page 5's Windows form. First, we add the event handler button1_Clicked to button1, to handle Click events:

button1.add_Click(button1_Clicked);  

Then, we define the event handler to pop-up an alert box whenever the button is clicked:

function button1_Clicked(o : Object, e : EventArgs) {
  MessageBox.Show(o.Name());
}  

The package is ButtonClickPkg and the class is ButtonClickCls. We pop up the Windows form by calling the Application.Run() method:

Application.Run(new ButtonClickPkg.ButtonClickCls());

You should get the following Windows form:


Next: How to redefine the OnMouseUp event handler

internet.commediabistro.comJusttechjobs.comGraphics.com

Search:

WebMediaBrands Corporate Info

Legal Notices, Licensing, Permissions, Privacy Policy.
Advertise | Newsletters | Shopping | E-mail Offers | Freelance Jobs

webref The latest from WebReference.com Browse >
Rolling Out Your Own HTML Application Version Control · HTML 5: Client-side Storage · Working with Ajax Server Extensions
Sitemap · Experts · Tools · Services · Email a Colleague · Contact FREE Newsletters 
 The latest from internet.com
Wi-Fi Product Watch, November 2009 · Chip Market Recovering From '08 Collapse · Low-Cost Tools to Kickstart Your New Business


Produced by Yehuda Shiran and Tomer Shiran
All Rights Reserved. Legal Notices.
Created: August 26, 2002
Revised: August 26, 2002

URL: http://www.webreference.com/js/column117/5.html