<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="http://syndication.webwiz.co.uk/rss_namespace/">
 <channel>
  <title>DevForce Community Forum : How to Populate Data?</title>
  <link>http://www.ideablade.com/forum/</link>
  <description>This is an XML content feed of; DevForce Community Forum : DevForce 2010 : How to Populate Data?</description>
  <pubDate>Wed, 29 Jul 2026 19:31:19 -700</pubDate>
  <lastBuildDate>Sun, 15 May 2011 22:13:35 -700</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 9.69</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>www.ideablade.com/forum/RSS_post_feed.asp?TID=2672</WebWizForums:feedURL>
  <image>
   <title>DevForce Community Forum</title>
   <url>http://www.ideablade.com/forum/forum_images/IdeaBlade_logo_tm.png</url>
   <link>http://www.ideablade.com/forum/</link>
  </image>
  <item>
   <title>How to Populate Data? : Thank you so much Mark i could...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=2672&amp;PID=10693#10693</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=1102" rel="nofollow">rosmena</a><br /><strong>Subject:</strong> 2672<br /><strong>Posted:</strong> 15-May-2011 at 10:13pm<br /><br />Thank you so much Mark i could not have done it with out your Help. Since you are from Dallas i'm assuming you are a Maverick fan.]]>
   </description>
   <pubDate>Sun, 15 May 2011 22:13:35 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=2672&amp;PID=10693#10693</guid>
  </item> 
  <item>
   <title>How to Populate Data? : Hi,local is just a namespace you...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=2672&amp;PID=10692#10692</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=449" rel="nofollow">smi-mark</a><br /><strong>Subject:</strong> 2672<br /><strong>Posted:</strong> 15-May-2011 at 7:05am<br /><br />Hi,<br><br>local is just a namespace you need to setup, in my project called ComboBoxTest this is the whole xaml. Take a look at the bolded line, replace the ComboBoxTest with your namespace and that should fix it.<br><br><table width="99%"><tr><td class="BBquote"><br>&lt;UserControl x:Class="ComboBoxTest.MainPage"<br>&nbsp;&nbsp;&nbsp; xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"<br>&nbsp;&nbsp;&nbsp; xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"<br>&nbsp;&nbsp;&nbsp; xmlns:d="http://schemas.microsoft.com/expression/blend/2008"<br>&nbsp;&nbsp;&nbsp; xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"<br>&nbsp;&nbsp;&nbsp; xmlns:sdk="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Data"<br>&nbsp;&nbsp;&nbsp; <b>xmlns:local="clr-namespace:ComboBoxTest"<br></b>mc:Ignorable="d"<br>&nbsp;&nbsp;&nbsp; d:DesignHeight="300" d:DesignWidth="400"&gt;<br><br>&nbsp;&nbsp;&nbsp; &lt;UserControl.Resources&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;local:MainPageViewModel x:Key="vm" /&gt;<br>&nbsp;&nbsp;&nbsp; &lt;/UserControl.Resources&gt;<br><br>&nbsp;&nbsp;&nbsp; &lt;Grid x:Name="LayoutRoot" Background="White" DataContext="{StaticResource vm}"&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;sdk:DataGrid ItemsSource="{Binding Orders}"&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;sdk:DataGrid.Columns&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;sdk:DataGridTemplateColumn x:Name="CustomerColumn" Header="Customer"&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;sdk:DataGridTemplateColumn.CellTemplate&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;DataTemplate&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;ComboBox ItemsSource="{Binding Customers, Source={StaticResource vm}}" /&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/DataTemplate&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/sdk:DataGridTemplateColumn.CellTemplate&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/sdk:DataGridTemplateColumn&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/sdk:DataGrid.Columns&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/sdk:DataGrid&gt;<br>&nbsp;&nbsp;&nbsp; &lt;/Grid&gt;<br>&lt;/UserControl&gt;<br><br></td></tr></table><br>]]>
   </description>
   <pubDate>Sun, 15 May 2011 07:05:25 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=2672&amp;PID=10692#10692</guid>
  </item> 
  <item>
   <title>How to Populate Data? : local:MainPageViewModel was not...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=2672&amp;PID=10691#10691</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=1122" rel="nofollow">judith0829</a><br /><strong>Subject:</strong> 2672<br /><strong>Posted:</strong> 15-May-2011 at 5:24am<br /><br />local:MainPageViewModel was not found.Verify that you are not missing an assembly reference. That all assembly reference has been build]]>
   </description>
   <pubDate>Sun, 15 May 2011 05:24:41 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=2672&amp;PID=10691#10691</guid>
  </item> 
  <item>
   <title>How to Populate Data? : i am getting an error  Error1&amp;#039;local&amp;#039;...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=2672&amp;PID=10690#10690</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=1122" rel="nofollow">judith0829</a><br /><strong>Subject:</strong> 2672<br /><strong>Posted:</strong> 15-May-2011 at 4:58am<br /><br />i am getting an error<DIV>&nbsp;</DIV><DIV>Error&nbsp;1&nbsp;'local' is an undeclared prefix. Line 6, position 10.<BR></DIV>]]>
   </description>
   <pubDate>Sun, 15 May 2011 04:58:37 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=2672&amp;PID=10690#10690</guid>
  </item> 
  <item>
   <title>How to Populate Data? : The DataContext of the DataGrid...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=2672&amp;PID=10678#10678</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=449" rel="nofollow">smi-mark</a><br /><strong>Subject:</strong> 2672<br /><strong>Posted:</strong> 12-May-2011 at 11:26pm<br /><br />The DataContext of the DataGrid is the reason why you are not able to bind to orders. You need to have some way of binding back to the root datacontext (The ViewModel)<br><br>This is not so easy in SL4 but will become much easier in SL5, for now you could do something like this:<br><br><pre style="font-family:C&#111;nsolas;font-size:13;color:black;:white;"><span style="color:#a31515;">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color:blue;">&lt;</span><span style="color:#a31515;">UserControl.Resources</span><span style="color:blue;">&gt;</span><span style="color:#a31515;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color:blue;">&lt;</span><span style="color:#a31515;">local</span><span style="color:blue;">:</span><span style="color:#a31515;">MainPageViewModel</span><span style="color:red;">&nbsp;x</span><span style="color:blue;">:</span><span style="color:red;">Key</span><span style="color:blue;">=</span><span style="color:blue;">"vm"</span><span style="color:blue;">&nbsp;/&gt;</span><span style="color:#a31515;">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color:blue;">&lt;/</span><span style="color:#a31515;">UserControl.Resources</span><span style="color:blue;">&gt;</span> <span style="color:#a31515;">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color:blue;">&lt;</span><span style="color:#a31515;">Grid</span><span style="color:red;">&nbsp;x</span><span style="color:blue;">:</span><span style="color:red;">Name</span><span style="color:blue;">=</span><span style="color:blue;">"LayoutRoot"</span><span style="color:red;">&nbsp;Background</span><span style="color:blue;">=</span><span style="color:blue;">"White"</span><span style="color:red;">&nbsp;DataContext</span><span style="color:blue;">="{</span><span style="color:#a31515;">StaticResource</span><span style="color:red;">&nbsp;vm</span><span style="color:blue;">}</span><span style="color:blue;">"</span><span style="color:blue;">&gt;</span><span style="color:#a31515;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color:blue;">&lt;</span><span style="color:#a31515;">sdk</span><span style="color:blue;">:</span><span style="color:#a31515;">DataGrid</span><span style="color:red;">&nbsp;ItemsSource</span><span style="color:blue;">="{</span><span style="color:#a31515;">Binding</span><span style="color:red;">&nbsp;Orders</span><span style="color:blue;">}</span><span style="color:blue;">"</span><span style="color:blue;">&gt;</span><span style="color:#a31515;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color:blue;">&lt;</span><span style="color:#a31515;">sdk</span><span style="color:blue;">:</span><span style="color:#a31515;">DataGrid.Columns</span><span style="color:blue;">&gt;</span><span style="color:#a31515;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color:blue;">&lt;</span><span style="color:#a31515;">sdk</span><span style="color:blue;">:</span><span style="color:#a31515;">DataGridTemplateColumn</span><span style="color:red;">&nbsp;x</span><span style="color:blue;">:</span><span style="color:red;">Name</span><span style="color:blue;">=</span><span style="color:blue;">"CustomerColumn"</span><span style="color:red;">&nbsp;Header</span><span style="color:blue;">=</span><span style="color:blue;">"Customer"</span><span style="color:blue;">&gt;</span><span style="color:#a31515;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color:blue;">&lt;</span><span style="color:#a31515;">sdk</span><span style="color:blue;">:</span><span style="color:#a31515;">DataGridTemplateColumn.CellTemplate</span><span style="color:blue;">&gt;</span><span style="color:#a31515;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color:blue;">&lt;</span><span style="color:#a31515;">DataTemplate</span><span style="color:blue;">&gt;</span><span style="color:#a31515;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color:blue;">&lt;</span><span style="color:#a31515;">ComboBox</span><span style="color:red;">&nbsp;ItemsSource</span><span style="color:blue;">="{</span><span style="color:#a31515;">Binding</span><span style="color:red;">&nbsp;Customers</span><span style="color:blue;">,</span><span style="color:red;">&nbsp;Source</span><span style="color:blue;">={</span><span style="color:#a31515;">StaticResource</span><span style="color:red;">&nbsp;vm</span><span style="color:blue;">}}</span><span style="color:blue;">"</span><span style="color:blue;">&nbsp;/&gt;</span><span style="color:#a31515;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color:blue;">&lt;/</span><span style="color:#a31515;">DataTemplate</span><span style="color:blue;">&gt;</span><span style="color:#a31515;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color:blue;">&lt;/</span><span style="color:#a31515;">sdk</span><span style="color:blue;">:</span><span style="color:#a31515;">DataGridTemplateColumn.CellTemplate</span><span style="color:blue;">&gt;</span><span style="color:#a31515;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color:blue;">&lt;/</span><span style="color:#a31515;">sdk</span><span style="color:blue;">:</span><span style="color:#a31515;">DataGridTemplateColumn</span><span style="color:blue;">&gt;</span><span style="color:#a31515;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color:blue;">&lt;/</span><span style="color:#a31515;">sdk</span><span style="color:blue;">:</span><span style="color:#a31515;">DataGrid.Columns</span><span style="color:blue;">&gt;</span><span style="color:#a31515;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color:blue;">&lt;/</span><span style="color:#a31515;">sdk</span><span style="color:blue;">:</span><span style="color:#a31515;">DataGrid</span><span style="color:blue;">&gt;</span><span style="color:#a31515;">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color:blue;">&lt;/</span><span style="color:#a31515;">Grid</span><span style="color:blue;">&gt;<br><br><br></span></pre><br>]]>
   </description>
   <pubDate>Thu, 12 May 2011 23:26:58 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=2672&amp;PID=10678#10678</guid>
  </item> 
  <item>
   <title>How to Populate Data? :  </title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=2672&amp;PID=10677#10677</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=1102" rel="nofollow">rosmena</a><br /><strong>Subject:</strong> 2672<br /><strong>Posted:</strong> 12-May-2011 at 11:13pm<br /><br /><img src="http://www.ideablade.com/forum/uploads/1102/Untitled3.png" height="630" width="1171" border="0" />]]>
   </description>
   <pubDate>Thu, 12 May 2011 23:13:27 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=2672&amp;PID=10677#10677</guid>
  </item> 
  <item>
   <title>How to Populate Data? :  </title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=2672&amp;PID=10676#10676</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=1102" rel="nofollow">rosmena</a><br /><strong>Subject:</strong> 2672<br /><strong>Posted:</strong> 12-May-2011 at 11:06pm<br /><br /><img src="http://www.ideablade.com/forum/uploads/1102/Untitled2.png" height="616" width="768" border="0" />]]>
   </description>
   <pubDate>Thu, 12 May 2011 23:06:42 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=2672&amp;PID=10676#10676</guid>
  </item> 
  <item>
   <title>How to Populate Data? : This is the code in VB and also...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=2672&amp;PID=10675#10675</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=1102" rel="nofollow">rosmena</a><br /><strong>Subject:</strong> 2672<br /><strong>Posted:</strong> 12-May-2011 at 11:02pm<br /><br />This is the code in VB and also the XAML<DIV></DIV><DIV></DIV><DIV></DIV>]]>
   </description>
   <pubDate>Thu, 12 May 2011 23:02:45 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=2672&amp;PID=10675#10675</guid>
  </item> 
  <item>
   <title>How to Populate Data? : Can you please show us the code?...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=2672&amp;PID=10671#10671</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=449" rel="nofollow">smi-mark</a><br /><strong>Subject:</strong> 2672<br /><strong>Posted:</strong> 12-May-2011 at 6:45pm<br /><br />Can you please show us the code? Are you populating the Customers collection?]]>
   </description>
   <pubDate>Thu, 12 May 2011 18:45:10 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=2672&amp;PID=10671#10671</guid>
  </item> 
  <item>
   <title>How to Populate Data? : I haven&amp;#039;t tried robertg approch...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=2672&amp;PID=10670#10670</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=1102" rel="nofollow">rosmena</a><br /><strong>Subject:</strong> 2672<br /><strong>Posted:</strong> 12-May-2011 at 6:39pm<br /><br />I haven't tried robertg approch yet..]]>
   </description>
   <pubDate>Thu, 12 May 2011 18:39:46 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=2672&amp;PID=10670#10670</guid>
  </item> 
  <item>
   <title>How to Populate Data? : I have done what Mark&amp;#039;s advice...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=2672&amp;PID=10669#10669</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=1102" rel="nofollow">rosmena</a><br /><strong>Subject:</strong> 2672<br /><strong>Posted:</strong> 12-May-2011 at 6:38pm<br /><br />I have done what Mark's advice and still&nbsp;can't populate&nbsp;combobox. I want to Display all the ContactName of the Customer Table in that combobox. Take note that the combobox is within&nbsp;a Datagrid.<DIV>&nbsp;</DIV><DIV>As you can see were a VB programmer(WinForm) trying to migrate&nbsp;to WPF or Silverlight, we have no expierence in regards to XAML thats why were having a hard time on this.</DIV><DIV>&nbsp;</DIV><DIV>Thank you for helping us..</DIV>]]>
   </description>
   <pubDate>Thu, 12 May 2011 18:38:37 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=2672&amp;PID=10669#10669</guid>
  </item> 
  <item>
   <title>How to Populate Data? : Or you could take Mark&amp;#039;s...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=2672&amp;PID=10660#10660</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=1097" rel="nofollow">robertg</a><br /><strong>Subject:</strong> 2672<br /><strong>Posted:</strong> 12-May-2011 at 9:48am<br /><br />Or you could take Mark's advice. Hi Mark! You apparently type slightly faster than I do.<br>]]>
   </description>
   <pubDate>Thu, 12 May 2011 09:48:45 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=2672&amp;PID=10660#10660</guid>
  </item> 
  <item>
   <title>How to Populate Data? : For your combobox, you want to...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=2672&amp;PID=10658#10658</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=1097" rel="nofollow">robertg</a><br /><strong>Subject:</strong> 2672<br /><strong>Posted:</strong> 12-May-2011 at 9:47am<br /><br />For your combobox, you want to bind <i>ItemsSource </i>to the navigation property that contains the possibilities for that column., and the <i>SelectedItem </i>to a scalar property on the current item. We have a Silverlight code sample which demonstrates this:<br><br>http://drc.ideablade.com/xwiki/bin/view/Documentation/SimpleComboBox<br>]]>
   </description>
   <pubDate>Thu, 12 May 2011 09:47:32 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=2672&amp;PID=10658#10658</guid>
  </item> 
  <item>
   <title>How to Populate Data? : You need to set the ItemsSource...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=2672&amp;PID=10657#10657</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=449" rel="nofollow">smi-mark</a><br /><strong>Subject:</strong> 2672<br /><strong>Posted:</strong> 12-May-2011 at 9:46am<br /><br />You need to set the ItemsSource of the ComboBox to be databound to a property such as "Customers" which is implemented as an ObservableCollection or some other kind of collection.<br><br>You then need to populate this collection with the list of customers.<br><br>&lt;ComboBox SelectedItem={Binding Order.Customer}" ItemsSource="{Binding Customers}" /&gt;<br><br>public ObservableCollection&lt;Customer&gt; Customers { get; set; }<br><br><br>Something like that.<br>]]>
   </description>
   <pubDate>Thu, 12 May 2011 09:46:27 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=2672&amp;PID=10657#10657</guid>
  </item> 
  <item>
   <title>How to Populate Data? : I have a DataGrid which has a...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=2672&amp;PID=10652#10652</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=1102" rel="nofollow">rosmena</a><br /><strong>Subject:</strong> 2672<br /><strong>Posted:</strong> 11-May-2011 at 11:52pm<br /><br /><DIV>I have a DataGrid which has a combobox control in it. My quistion is&nbsp;how can i populate my combobox with data<img src="http://www.ideablade.com/forum/uploads/1102/Untitled.png" height="614" width="877" border="0" />estion </DIV>]]>
   </description>
   <pubDate>Wed, 11 May 2011 23:52:43 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=2672&amp;PID=10652#10652</guid>
  </item> 
 </channel>
</rss>