---
title: "What is a bubbled event?"  
description: "What is a bubbled event?"  
author: "Sumit Kesarwani"  
published: 2014-01-25  
updated: 2020-09-16  
canonical: https://www.mindstick.com/interview/1880/what-is-a-bubbled-event  
category: "c#"  
tags: ["c#"]  
reading_time: 1 minute  

---

# What is a bubbled event?

When you have a complex control, like DataGrid, writing an event processing routine for each object (cell, button, row, etc.) is quite tedious. The controls can bubble up their event handlers, allowing the main DataGrid event handler to take care of its constituents.

## Answers

### Answer by Sumit Kesarwani

When you have a complex control, like DataGrid, writing an event processing routine for each object (cell, button, row, etc.) is quite tedious. The controls can bubble up their event handlers, allowing the main DataGrid event handler to take care of its constituents.


---

Original Source: https://www.mindstick.com/interview/1880/what-is-a-bubbled-event

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
