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 |
object is physical and class is logical..here class is not occupying any memory as our definition of class but i got a question then the class where it stores if it is not occupying any memory....
what is dotnet architecture? can anyone explain that.
What does mean by .net framework?
Tell us the differences between an interface and an abstract class in .net?
What?s Singleton activation mode?
What base class do all Web Forms inherit from?
Explain the use of ‘this’ keyword in Java?
What are the core differences between .NET Languages ?
String[] a = new string[10] for(i=0; i<10; i++) { a[i] = i; } How many heap object will be created for this array. Choose the answer below. Ans: 1, 10, 11, 12
Explain about the features and elements present in Visual studio.NET IDE?
which method do you use to redirect the user to another page without performing a round trip to the client? How?
What is meant by globalization and localization?