what is event inheritance and event delegation?
Answer / rathi
The event-delegation model has two advantages over the
event-inheritance model. First, it enables event handling
to be handled by objects other than the ones that generate
the events (or their containers). This allows a clean
separation between a component's design and its use. The
other advantage of the event-delegation model is that it
performs much better in applications where many events are
generated. This performance improvement is due to the fact
that the event-delegation model does not have to repeatedly
process unhandled events, as is the case of the event-
inheritance
model.
| Is This Answer Correct ? | 1 Yes | 0 No |
Explain About GDI object ?
What is the use of system.diagnostics.process class in .net?
Is .net capable of supporting multi-thread?
How many types of exception handlers are there in .NET?
Difference between machine.config and web.config?
What is the difference between boxing and unboxing?
What is alias ? Is it used in .Net ?
Explain how com+ related to the dna architecture?
How many types of design patterns available in .NET?
Please explain what is a delegate?
What is the difference between a class and an object, and how do these terms relate to each other?
Is .net a programming language?