WPF - how to insert image into 2nd column of Grid element - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T00:48:30Zhttp://stackoverflow.com/feeds/question/346116http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/346116/wpf-how-to-insert-image-into-2nd-column-of-grid-element0WPF - how to insert image into 2nd column of Grid elementMalcolm2008-12-06T09:10:12Z2008-12-06T10:27:37Z
<p>Hi,</p>
<p>As the subject says I want to insert an image into the 2nd column of grid
defined with 2 columndefintions.</p>
<p>Programmatically that is???</p>
<p>I cannot see how to select the column using grid.Children.insert(1, img)
does not work.</p>
<p>Malcolm</p>
http://stackoverflow.com/questions/346116/wpf-how-to-insert-image-into-2nd-column-of-grid-element/346166#3461664Answer by Matt Hamilton for WPF - how to insert image into 2nd column of Grid elementMatt Hamilton2008-12-06T10:27:14Z2008-12-06T10:27:14Z<p>The row/column index on an element in WPF is an attached property. You set it using a static method on Grid, like this:</p>
<pre><code>Grid.SetColumn(img, 1);
</code></pre>
<p>More info <a href="http://msdn.microsoft.com/en-us/library/system.windows.controls.grid.setcolumn.aspx" rel="nofollow">here</a>, and more about attached properties <a href="http://msdn.microsoft.com/en-us/library/ms749011.aspx" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/346116/wpf-how-to-insert-image-into-2nd-column-of-grid-element/346168#3461685Answer by sflanker for WPF - how to insert image into 2nd column of Grid elementsflanker2008-12-06T10:27:37Z2008-12-06T10:27:37Z<pre><code>Image imgControl = new Image();
Grid.SetColumn(imgControl, 1);
gridContainer.Children.Add(imgControl);
</code></pre>
<p>Objects contained in a grid are positioned based on the attached dependency properties Column Row ColumnSpan and RowSpan which are set as shown above.</p>