WEB开发网
开发学院图形图像Flash Silverlight专题(16)- 动态设置WCF Service配置... 阅读

Silverlight专题(16)- 动态设置WCF Service配置信息

 2009-02-28 11:56:14 来源:WEB开发网   
核心提示: 用来以WCF Service的形式将数据库中的数据(这里为方便期间用了伪数据)传给Silverlight客户端首先给Silverlight工程添加Service References我们在Silverlight客户端这边以ListBox的形式呈现出来,定义如下(Page.xaml文件中)1

用来以WCF Service的形式将数据库中的数据(这里为方便期间用了伪数据)传给Silverlight客户端

首先给Silverlight工程添加Service References

Silverlight专题(16)- 动态设置WCF Service配置信息

我们在Silverlight客户端这边以ListBox的形式呈现出来,定义如下(Page.xaml文件中)

  1: <ListBox x:Name="ProductLBCtl" HorizontalAlignment="Center" VerticalAlignment="Top" Background="Transparent" BorderThickness="0">

  2:   <ListBox.ItemTemplate>

  3:     <DataTemplate>

  4:       <StackPanel Orientation="Horizontal">

  5:         <ContentPresenter Content="{Binding Name}" Margin="10,0"/>

  6:         <ContentPresenter Content="{Binding Description}" Margin="10,0"/>

  7:         <ContentPresenter Content="{Binding Price}" Margin="10,0"/>

  8:       </StackPanel>

  9:     </DataTemplate>

 10:   </ListBox.ItemTemplate>

 11: </ListBox>

获取WCF Service的数据信息如下(Page.xaml.cs中)

上一页  1 2 3 4 5  下一页

Tags:Silverlight 专题 动态

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接