What are Events in C#: In simple terms event means happening or action or occurrence of anything. Event can be anything it can be mouse click, enter key press, lost focus. In other words they are the notification, means something is going to change or ready to happen. Handling of the event is known as response. for example when you click on a button another page opens, here button click is an event and second part is the response of that events. When events happens a notification sent to client so that client can prepare the response. I am going to explain event handling in a very simple way, let’s suppose you have many objects in your application and they interact with other, now you tell me how you will know which of these many objects has changed their state? Any guess? Yes C sharp has the answer. You can do it by using Event source Event Handler Event Source: It is responsible to inform other objects that something has changed. Event Handler: When...