473,725 Members | 2,180 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

How to use EventArgs

when i double-click on a button on a form as i am designing the form, the IDE
creates a method corresponding to a event assignment as follows:

this eventhandler: this.exitToolSt ripMenuItem.Cli ck += new
System.EventHan dler(this.exitT oolStripMenuIte m_Click);
is paired with: private void exitToolStripMe nuItem_Click(ob ject sender,
EventArgs e) {}

How do/Can I what the EventArgs are?
Nov 17 '05 #1
3 30904

"Amil" <Am**@discussio ns.microsoft.co m> wrote in message
news:3A******** *************** ***********@mic rosoft.com...
when i double-click on a button on a form as i am designing the form, the
IDE
creates a method corresponding to a event assignment as follows:

this eventhandler: this.exitToolSt ripMenuItem.Cli ck += new
System.EventHan dler(this.exitT oolStripMenuIte m_Click);
is paired with: private void exitToolStripMe nuItem_Click(ob ject sender,
EventArgs e) {}

How do/Can I what the EventArgs are?


If you search your MSDN help for "EventArgs" , you'll find (among others) an
article entitled "EventArgs Class" to get you started. From that page your
can link to "EventArgs Members", "Events Tutorial" and "Eventhandl er"
topics.

--
Peter [MVP Visual Developer]
Jack of all trades, master of none.
Nov 17 '05 #2
Amil,

In this case, the EventArgs will not do anything for you. The reason
for this is that there is no extra information associated with the event
that you can't get from the sender parameter (which is the button that fired
the click).

The EventArgs instance is there so that you can observe the pattern laid
out for event signatures by MS when they created the framework. The pattern
basically is (and I'm sure you have seen this everywhere):

object sender; <EventArgs derived type> e

With .NET 2.0, this pattern is even more useful. The reason for this is
that there is now delegate covariance (I believe that is it), which means
that if you have a delegate that is expecting a signature of:

object sender, CancelEventArgs e // CancelEventArgs derives from EventArgs

You can assign a method with a signature of object, EventArgs to that
delegate, because it is possible to cast down the CancelEventArgs to an
EventArgs instance. This will allow you assign event handlers to more
delegates (depending on the logic you need to execute).

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m


"Amil" <Am**@discussio ns.microsoft.co m> wrote in message
news:3A******** *************** ***********@mic rosoft.com...
when i double-click on a button on a form as i am designing the form, the
IDE
creates a method corresponding to a event assignment as follows:

this eventhandler: this.exitToolSt ripMenuItem.Cli ck += new
System.EventHan dler(this.exitT oolStripMenuIte m_Click);
is paired with: private void exitToolStripMe nuItem_Click(ob ject sender,
EventArgs e) {}

How do/Can I what the EventArgs are?

Nov 17 '05 #3
of course, i should have done that. how lazy of me. thanks.

"Peter van der Goes" wrote:

"Amil" <Am**@discussio ns.microsoft.co m> wrote in message
news:3A******** *************** ***********@mic rosoft.com...
when i double-click on a button on a form as i am designing the form, the
IDE
creates a method corresponding to a event assignment as follows:

this eventhandler: this.exitToolSt ripMenuItem.Cli ck += new
System.EventHan dler(this.exitT oolStripMenuIte m_Click);
is paired with: private void exitToolStripMe nuItem_Click(ob ject sender,
EventArgs e) {}

How do/Can I what the EventArgs are?


If you search your MSDN help for "EventArgs" , you'll find (among others) an
article entitled "EventArgs Class" to get you started. From that page your
can link to "EventArgs Members", "Events Tutorial" and "Eventhandl er"
topics.

--
Peter [MVP Visual Developer]
Jack of all trades, master of none.

Nov 17 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
4778
by: Steve Amey | last post by:
Hi all I am creating a basic control to perform some tasks, and I want to declare some events to be raised so they can be handled from the form that the control is on. I can create my own Event Handler class and use that, but I would like to use the System.EventArgs class so that my event can be handled by different controls. For example:
2
2553
by: ZAky | last post by:
Why do I get a System.NullReferenceException for this script? I added the following script to a simple form with a button. <Script> public event EventHandler DoThis; static void Main() { Application.Run(new Form1()); } private void button1_Click(object sender, System.EventArgs e)
8
4543
by: Phill | last post by:
All the event handlers seem to pass an Object and an EventArgs object. If the event doesn't need this info why pass them anyway? It is inefficient.
1
4676
by: Jack Addington | last post by:
I have a 3rd party object that fires an itemchanged event when someone edits some data on a form. This event has a custom eventArgs that has a field called ActionCode. In the code of the event, if you set this ActionCode to various values the control will respond in various ways (reject, reject change field, accept, etc). I am trying to understand exactly how that works as I am trying to extend the control and add more processing s...
3
6541
by: Yangtsi River | last post by:
Hi, in any event procudure,there is two paras:sender As Object, e As EventArgs, i copied them-not know what they are about, and my ASPX works. I guess the sender is the control by which I triggered this sub, and what is EventArgs then? I am passing a third para to the sub, that is mysub("jim",sender As Object, e As EventArgs), the sub is defined like :
3
4665
by: Leslie Sanford | last post by:
I have a hierarchy of message classes. Many times when messages are created/received by a class, an event is generated to let the outside know. Also, the message is passed along when raising the event. To follow the .NET event guidelines, each message class therefore needs its own EventArgs derived class to represent it. The problem is that these EventArgs classes do not add anything of value themselves. There is no additional event data...
2
2331
by: Bob | last post by:
Hi, I'm still new to asp.net and i would like to understand this: "Source As Object, e As EventArgs" <script runat="server"> Sub button1(Source As Object, e As EventArgs) p1.InnerHtml="You clicked the blue button!" End Sub </script>
4
2172
by: Frankie | last post by:
The .NET Framework provides us with built-in event handlers: System.EventHandler and the generic System.EventArgs<TEventArgs> It appears that those built-in event handler delegates are just a convenience for us, as we can use those instead of creating a new delegate for every event that we implement. Question: Is it good to use those built-in event handlers as a matter of
3
2002
by: Tony | last post by:
Hello! One more thing assume I create an event and an object derived from the eventArgs containing some info about the event. Then create another event also with an object derived from the eventArgs containing some info about the event. When creating the event handler I have two choices either use EventArgs as the second parametr and cast to the actual type
0
8888
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9401
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9257
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9176
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9113
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8097
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6702
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4784
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
2635
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.