0

我是一个刚刚学习 OOPS、编码、ASP.net 的计算机初学者。

我创建了一个 WCF 服务,它使用 LINQ to SQL 类从 sql 数据库表中检索数据。Windows phone 7 应用程序使用此 WCF 服务以使用列表框显示数据。

有人可以帮我如何将数据绑定到列表框控件并从 sql 表中填充数据吗?

任何帮助表示赞赏。

4

1 回答 1

0

希望这可以帮助。单击 button1 listBox1 将使用 s = "select * from table where " + s; 填充数据。

private void button1_Click_1(object sender, EventArgs e)
{
    if (listBox1.SelectedItems.Count == 0)
    {
       MessageBox.Show("select items");
       return;
    }
    string s = "";
    for (int i = 0; i < listBox1.SelectedItems.Count; i++)
    {
       if(i==listBox1.SelectedItems.Count-1)
          s = s + " item='" + listBox1.SelectedItems[i].ToString() + "'";
        else
          s=s + " item='" + listBox1.SelectedItems[i].ToString() + "' or ";
    }
    s = "select * from table where " + s;
    MessageBox.Show(s);
}
于 2012-04-29T06:35:23.140 回答