Am I Correct?

  • Thread starter Thread starter rn5a
  • Start date Start date
R

rn5a

Assume that the one of the Headers in a DataGrid control in a CheckBox.

Now if I am not mistaken, the parent of this CheckBox control is a
TableCell object (which creates the HTML <td>). The parent of this
TableCell (or rather, all the TableCells) is an object of type
DataGridItem (which creates the HTML <tr>). Finally, the parent of this
DataGridItem (or rather, all the DataGridItems) is the DataGrid itself
(which creates the HTML <table>).

Am I correct? If not, please do correct me.

Actually I am getting a bit confused....
 
You simply need to put a break point in one of the event handlers and
examine the cells and controls thru the debugger. What you have said sounds
about correct but I really am not sure. What issues are you experiencing
around that problem?
 
Back
Top