In WPF, how can I determine what column/row in a grid a control is - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T01:09:58Z http://stackoverflow.com/feeds/question/363100 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/363100/in-wpf-how-can-i-determine-what-column-row-in-a-grid-a-control-is 1 In WPF, how can I determine what column/row in a grid a control is Scott 2008-12-12T15:37:13Z 2008-12-12T18:59:18Z <p>I am building a grid dynamically and putting buttons in one of the columns. When I click a button, I want to know what row of my grid it's in. How can I find this?</p> http://stackoverflow.com/questions/363100/in-wpf-how-can-i-determine-what-column-row-in-a-grid-a-control-is/363586#363586 3 Answer by Boyan for In WPF, how can I determine what column/row in a grid a control is Boyan 2008-12-12T17:46:32Z 2008-12-12T17:46:32Z <p>In the Click event handler for the button you say:</p> <pre><code>int row; Button btn = sender as Button; if (btn != null) { row = Grid.GetRow(btn); // And you have the row number... } else { // A nasty error occurred... } </code></pre>