System.Windows.Ria.Controls and POCO

Posted by jvcoach23 on Stack Overflow See other posts from Stack Overflow or by jvcoach23
Published on 2010-04-09T14:19:10Z Indexed on 2010/05/10 17:04 UTC
Read the original article Hit count: 568

Filed under:
|

I'm trying to figure out how to use POCO for silverlight use. I found an article that appears it will step me through the basics. However, it has in it a reference to the System.Windows.Ria.Controls. i don't have that on my machine.. i found System.Windows.Ria but not one that has teh control on it. I just downloaded teh RIA beta today and installed it.. so should have the latest and greatest. Anyway.. Here is the link to the article... link text

and here is the code in the xaml they refer to.

<UserControl x:Class="Try1Silverlight.MainPage"

xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:data="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Data" xmlns:riaControls="clr-namespace:System.Windows.Controls;assembly=System.Windows.Ria.Controls" xmlns:domain="clr-namespace:Try1Silverlight.Web" mc:Ignorable="d" d:DesignWidth="640" d:DesignHeight="480">

<data:DataGrid x:Name="CustomerList"
      ItemsSource="{Binding Data, ElementName=CustomerSource}">
</data:DataGrid>

What have i done wrong that the Ria.Control is not there.
thanks shannon

© Stack Overflow or respective owner

Related posts about POCO

Related posts about Silverlight