In WPF, how can I determine what column/row in a grid a control is - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T01:09:58Zhttp://stackoverflow.com/feeds/question/363100http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/363100/in-wpf-how-can-i-determine-what-column-row-in-a-grid-a-control-is1In WPF, how can I determine what column/row in a grid a control isScott2008-12-12T15:37:13Z2008-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#3635863Answer by Boyan for In WPF, how can I determine what column/row in a grid a control isBoyan2008-12-12T17:46:32Z2008-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>