首页 文章

System.Windows.Ria.Controls和POCO

提问于
浏览
1

我在我的机器上有这个...我发现System.Windows.Ria但没有一个控制它的人 . 我今天刚刚下载了RIA测试版并安装了它..所以应该有最新和最好的 . 无论如何..这是文章的链接... link text

这里是他们引用的xaml中的代码 .

<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>

Ria.Control不在那里我做错了什么 .
谢谢香农

2 回答

  • 0

    System.Windows.Controls.Ria程序集已被此程序集替换:

    System.Windows.Controls.DomainServices
    

    您可以在WCF RIA Services right here的v1.0版本中找到重大更改的列表 .

  • 3

    好吧..我想出来了......不得不在添加引用中浏览它...在C:\ Program Files(x86)\ Microsoft SDKs \ RIA Services \ v1.0 \ Libraries \ Silverlight下

    抱歉那个香农

相关问题