WPF - how to insert image into 2nd column of Grid element - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T00:48:30Z http://stackoverflow.com/feeds/question/346116 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/346116/wpf-how-to-insert-image-into-2nd-column-of-grid-element 0 WPF - how to insert image into 2nd column of Grid element Malcolm 2008-12-06T09:10:12Z 2008-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#346166 4 Answer by Matt Hamilton for WPF - how to insert image into 2nd column of Grid element Matt Hamilton 2008-12-06T10:27:14Z 2008-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#346168 5 Answer by sflanker for WPF - how to insert image into 2nd column of Grid element sflanker 2008-12-06T10:27:37Z 2008-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>