How to populate a WPF grid based on a 2-dimensional array - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T21:39:32Z http://stackoverflow.com/feeds/question/276808 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/276808/how-to-populate-a-wpf-grid-based-on-a-2-dimensional-array 3 How to populate a WPF grid based on a 2-dimensional array Daniel Plaisted 2008-11-10T01:05:52Z 2009-10-28T09:19:50Z <p>I have a 2-dimensional array of objects and I basically want to databind each one to a cell in a WPF grid. Currently I have this working but I am doing most of it procedurally. I create the correct number of row and column definitions, then I loop through the cells and create the controls and set up the correct bindings for each one. </p> <p>At a minimum I would like to be able to use a template to specify the controls and bindings in xaml. Ideally I would like to get rid of the procedural code and just do it all with databinding, but I'm not sure that's possible.</p> <p>Here is the code I am currently using:</p> <pre><code>public void BindGrid() { m_Grid.Children.Clear(); m_Grid.ColumnDefinitions.Clear(); m_Grid.RowDefinitions.Clear(); for (int x = 0; x &lt; MefGrid.Width; x++) { m_Grid.ColumnDefinitions.Add(new ColumnDefinition() { Width = new GridLength(1, GridUnitType.Star), }); } for (int y = 0; y &lt; MefGrid.Height; y++) { m_Grid.RowDefinitions.Add(new RowDefinition() { Height = new GridLength(1, GridUnitType.Star), }); } for (int x = 0; x &lt; MefGrid.Width; x++) { for (int y = 0; y &lt; MefGrid.Height; y++) { Cell cell = (Cell)MefGrid[x, y]; SolidColorBrush brush = new SolidColorBrush(); var binding = new Binding("On"); binding.Converter = new BoolColorConverter(); binding.Mode = BindingMode.OneWay; BindingOperations.SetBinding(brush, SolidColorBrush.ColorProperty, binding); var rect = new Rectangle(); rect.DataContext = cell; rect.Fill = brush; rect.SetValue(Grid.RowProperty, y); rect.SetValue(Grid.ColumnProperty, x); m_Grid.Children.Add(rect); } } } </code></pre> http://stackoverflow.com/questions/276808/how-to-populate-a-wpf-grid-based-on-a-2-dimensional-array/276868#276868 3 Answer by Jobi Joy for How to populate a WPF grid based on a 2-dimensional array Jobi Joy 2008-11-10T01:50:03Z 2008-11-10T01:50:03Z <p>The purpose of the Grid is not for real databinding, it is just a panel. I am listing down the easiest way to accomplish the visualization of a two dimensional list </p> <pre><code>&lt;Window.Resources&gt; &lt;DataTemplate x:Key="DataTemplate_Level2"&gt; &lt;Button Content="{Binding}" Height="40" Width="50" Margin="4,4,4,4"/&gt; &lt;/DataTemplate&gt; &lt;DataTemplate x:Key="DataTemplate_Level1"&gt; &lt;ItemsControl ItemsSource="{Binding}" ItemTemplate="{DynamicResource DataTemplate_Level2}"&gt; &lt;ItemsControl.ItemsPanel&gt; &lt;ItemsPanelTemplate&gt; &lt;StackPanel Orientation="Horizontal"/&gt; &lt;/ItemsPanelTemplate&gt; &lt;/ItemsControl.ItemsPanel&gt; &lt;/ItemsControl&gt; &lt;/DataTemplate&gt; &lt;/Window.Resources&gt; &lt;Grid&gt; &lt;ItemsControl x:Name="lst" ItemTemplate="{DynamicResource DataTemplate_Level1}"/&gt; &lt;/Grid&gt; </code></pre> <p>And in the code behind set the ItemsSource of lst with a TwoDimentional data structure.</p> <pre><code> public Window1() { List&lt;List&lt;int&gt;&gt; lsts = new List&lt;List&lt;int&gt;&gt;(); for (int i = 0; i &lt; 5; i++) { lsts.Add(new List&lt;int&gt;()); for (int j = 0; j &lt; 5; j++) { lsts[i].Add(i * 10 + j); } } InitializeComponent(); lst.ItemsSource = lsts; } </code></pre> <p>This gives you the following screen as output. You can edit the DataTemplate_Level2 to add more specific data of your object.</p> <p><img src="http://img139.imageshack.us/img139/2972/twodimarrayhd2.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/276808/how-to-populate-a-wpf-grid-based-on-a-2-dimensional-array/1636058#1636058 0 Answer by Torsten for How to populate a WPF grid based on a 2-dimensional array Torsten 2009-10-28T09:19:50Z 2009-10-28T09:19:50Z <p>Hi. You may want to check out this link: <a href="http://www.thinkbottomup.com.au/site/blog/Game%5Fof%5FLife%5Fin%5FXAML%5FWPF%5Fusing%5Fembedded%5FPython" rel="nofollow">http://www.thinkbottomup.com.au/site/blog/Game%5Fof%5FLife%5Fin%5FXAML%5FWPF%5Fusing%5Fembedded%5FPython</a></p> <p>If you use a List within a List you can use myList[x][y] to access a cell.</p>