473,569 Members | 2,352 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Base and derived event firing in .NET v1

Hi!

Im having real issues understanding delegates/events in .NET v1, and was
hoping someone could shed some light on where I'm not quite understanding.
I've got this piece of code in a base user control, which i've called
'PropertyPanel' . In it is the following code:

public delegate void EventHandler(ob ject sender, EventArgs e);

public event EventHandler AppliedProperti es;

private void buttonOK_Click( object sender, System.EventArg s e)

{

EventHandler handler = AppliedProperti es;

EventArgs ex = new EventArgs();

if (ValidateForm() )

{

if (handler!=null)

{

handler(this, ex);

}

}

}

Now what I'd like to do is to derive from my base user control several other
property panels, but still hook to my AppliedProperti es event handler within
the main form, which will fire from a specific implementation within the
derived class, for example by:

(in the main form)

PropertyPanel myPropertyPanel ;

myPropertyPanel = new NodePropertyPan e();

myPropertyPanel .AppliedPropert ies += new EventHandler(th is.Test);

OR myPropertyPanel = new LinkPropertyPan e();

myPropertyPanel .AppliedPropert ies += ....

Does anyone know or can give me advice how to best go about this?

Any help would be greatly appreciated,

Paul


Jul 27 '06 #1
1 1269
pkiddie,

The problem here is that you are defining the EventHandler delegate in
your class. You also subsequently declare your event of that type. There
are two ways to fix this. The first is to patch up the call site for the
event:

myPropertyPanel .AppliedPropert ies += new
PropertyPanel.E ventHandler(thi s.Test);

Of course, this isn't the best way to go about this. Because
EventHandler is already defined, I would just remove the delegate
declaration (but keep the event declaration). Then, your code should be
fine.

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m
"pkiddie" <pk*****@hotmai l.comwrote in message
news:ec******** ******@TK2MSFTN GP05.phx.gbl...
Hi!

Im having real issues understanding delegates/events in .NET v1, and was
hoping someone could shed some light on where I'm not quite understanding.
I've got this piece of code in a base user control, which i've called
'PropertyPanel' . In it is the following code:

public delegate void EventHandler(ob ject sender, EventArgs e);

public event EventHandler AppliedProperti es;

private void buttonOK_Click( object sender, System.EventArg s e)

{

EventHandler handler = AppliedProperti es;

EventArgs ex = new EventArgs();

if (ValidateForm() )

{

if (handler!=null)

{

handler(this, ex);

}

}

}

Now what I'd like to do is to derive from my base user control several
other property panels, but still hook to my AppliedProperti es event
handler within the main form, which will fire from a specific
implementation within the derived class, for example by:

(in the main form)

PropertyPanel myPropertyPanel ;

myPropertyPanel = new NodePropertyPan e();

myPropertyPanel .AppliedPropert ies += new EventHandler(th is.Test);

OR myPropertyPanel = new LinkPropertyPan e();

myPropertyPanel .AppliedPropert ies += ....

Does anyone know or can give me advice how to best go about this?

Any help would be greatly appreciated,

Paul


Jul 27 '06 #2

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

Similar topics

13
2562
by: z. f. | last post by:
Hi, i have a class that is derived from System.Web.UI.Page, and this is the class i use in my application as PageBase. all other page classes are deriverd from my PageBase instead of the original System.Web.UI.Page in order to have common checks in the page base. i make securirty checks in the page base page_load event. if the security...
5
3148
by: Andy | last post by:
Hi all, I have a site with the following architecture: Common.Web.dll - Contains a CommonPageBase class which inherits System.Web.UI.Page myadd.dll - Contains PageBase which inherits CommonPageBase - Contains myPage which inherits PageBase Each of these classes overrides OnInit and ties an event handler
0
7703
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...
0
7618
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
8132
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...
0
7982
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...
0
6286
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...
1
5514
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...
0
5222
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
1
2116
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1226
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.