在silverlight中从数据库中检索数据

时间:2011-05-11 09:07:15

标签: c# silverlight

我需要显示数据库中的数据

    <StackPanel Orientation="Horizontal">
<TextBlock Text="TopAggregate:" FontWeight="Bold" Foreground="#FF0F274E" Height="25" Width="80" FontSize="10" VerticalAlignment="Center"/>
<TextBlock Text="{Binding Converter={StaticResource MyDictionaryConverter}, ConverterParameter=, Mode=OneWay}"  FontWeight="Bold" Foreground="#FF0F274E" Height="25" Width="240" FontSize="10" VerticalAlignment="Center"></TextBlock>
    </StackPanel>

这是我实现这一目标的唯一方法,我只需知道转换器参数应该是什么?

2 个答案:

答案 0 :(得分:2)

converter参数应该是您要检索的数据表中的列名

答案 1 :(得分:2)

问题在于您的表的列名。你去吧