Form Listbox& SQL数据库

时间:2012-01-11 18:27:04

标签: c# sql listbox-control

我正在设计一个C#Form程序,它使用列表框显示SQL数据库的搜索结果。搜索功能有效但现在我希望能够选择其中一个列表框行并将所选数据(来自SQL数据库)加载到新表单中。该计划跟踪我们公司的客户。当用户键入某些条件时,将填充列表框。我是SQL和C#表单设计的新手,所以任何帮助都会很棒。我在下面列出了列表框和搜索框的截图。

3 个答案:

答案 0 :(得分:0)

要获取您想要的项目,您可以执行此操作(在后面的代码中):

    public void Test(object sender, EventArgs e)
    {
        ListBox list = (ListBox)sender;
        var item = list.SelectedItem;
    }

获得项目后,您可以将其与加载数据的事件或方法相关联。

答案 1 :(得分:0)

您要调查的是您正在查看的各种控件的DataBinding属性。

答案 2 :(得分:0)

我在几个月前进行了快速搜索。这是我的代码。我希望它可以帮到你:

它是SQL中我的存储过程的完整代码:

    USE [Khane]
GO
/****** Object:  StoredProcedure [dbo].[QuickSerch]    Script Date: 01/11/2012 22:24:56 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:      <Author,,Name>
-- Create date: <Create Date,,>
-- Description: <Description,,>
-- =============================================
ALTER PROCEDURE [dbo].[QuickSerch] 
    @item nvarchar(300)=null
AS
BEGIN
    select * from PersonsDataTbl 
where 
Name like '%'+@item+'%' or 
LastName like '%'+@item+'%' or
FatherName like '%'+@item+'%' or
NationalCode like '%'+@item+'%' or
ShenasnameCode like '%'+@item+'%' or
BirthDate like '%'+@item+'%' or
State like '%'+@item+'%' or
City like '%'+@item+'%' or
Address like '%'+@item+'%' or
PostalCode like '%'+@item+'%' or
SportType like '%'+@item+'%' or
SportStyle like '%'+@item+'%' or
RegisterType like '%'+@item+'%' or
Ghahremani like '%'+@item+'%' 
END

如果您不了解存储过程,可以搜索它。

这是我的C#代码,用于将数据发送到存储过程并从中获取数据:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
using System.Data.SqlClient;
using System.IO;

namespace DL
{

public class DLQuickSerch
{
    List<Common.CommonPersonSerchResult> SerchResult = new List<Common.CommonPersonSerchResult>();

    public DLQuickSerch(string Item)
    {
        SqlConnection connection = new SqlConnection("Data Source=(local);Initial Catalog=Khane;Integrated Security=True");

        SqlCommand command = new SqlCommand();
        command.Connection = connection;

        command.CommandType = CommandType.StoredProcedure;
        command.CommandText = "QuickSerch";

        SqlParameter item = new SqlParameter("item", SqlDbType.NVarChar, 300);
        item.Value = Item;
        command.Parameters.Add(item);

        connection.Open();

        SqlDataReader reader = command.ExecuteReader();

        while (reader.Read())
        {
            Common.CommonPersonSerchResult res = new Common.CommonPersonSerchResult();

            res.ID = (int)reader.GetValue(0);
            res.FirstName = reader.GetValue(1).ToString();
            res.LastName = reader.GetValue(2).ToString();
            res.FatherName = reader.GetValue(3).ToString();
            res.NationalCode = (int)reader.GetValue(4);
            res.ShenasnameCode = (int)reader.GetValue(5);
            res.BirthDate = reader.GetValue(6).ToString();
            res.State = reader.GetValue(7).ToString();
            res.City = reader.GetValue(8).ToString();
            res.Address = reader.GetValue(9).ToString();
            res.PostalCode = reader.GetValue(10).ToString();
            res.SportType = reader.GetValue(11).ToString();
            res.SportStyle = reader.GetValue(12).ToString();
            res.RegisterType = reader.GetValue(13).ToString();
            res.Ghahremani = reader.GetValue(14).ToString();
            SerchResult.Add(res);

        }

        connection.Close();

    }

    public List<Common.CommonPersonSerchResult> GetQuickSerchResult()
    {
        return SerchResult;
    }
}
}

您应该使用数据库的数据更改SqlConnection connection = new SqlConnection("Data Source=(local);Initial Catalog=Khane;Integrated Security=True");

这是我在ListView中显示数据的代码:

private void QuickSearch(string item)
{
    DL.DLQuickSerch qc = new DL.DLQuickSerch(item);
    List<Common.CommonPersonSerchResult> reslt = qc.GetQuickSerchResult();
    FillListView(reslt);
} 

private void FillListView(List<Common.CommonPersonSerchResult> list)
    {
        SerchResultList.Items.Clear();   
        foreach (Common.CommonPersonSerchResult c in list)
        {
            ListViewItem item = new ListViewItem();
            item.Text = c.ID.ToString();
            item.SubItems.Add(c.FirstName);
            item.SubItems.Add(c.LastName);
            item.SubItems.Add(c.FatherName);
            item.SubItems.Add(c.NationalCode.ToString());
            item.SubItems.Add(c.ShenasnameCode.ToString());
            item.SubItems.Add(c.BirthDate);
            item.SubItems.Add(c.State);
            item.SubItems.Add(c.City);
            item.SubItems.Add(c.PostalCode.ToString());
            item.SubItems.Add(c.SportType);
            item.SubItems.Add(c.SportStyle);
            item.SubItems.Add(c.RegisterType);
            item.SubItems.Add(c.Ghahremani);

            item.Tag = c;

            SerchResultList.Items.Add(item);

        }
    }

我的Common.CommonPersonSerchResult只是一类属性。

小心这是我的代码,您应该在项目中使用它时进行更改

以新形式显示数据,您可以保存从list中的DB中获取的数据,之后以新形式的构造函数获取数据并以新的形式使用它。这很容易。要创建一个新的表单,您可以使用Listbox的选定更改事件,如下所示:

private void SerchResultList_SelectedIndexChanged(object sender, EventArgs e)
    {
        if (SerchResultList.SelectedItems.Count != 0)
        {
            Form2 = new Form2(SerchResultList.SelectedItems[0].Tag);
        }
    }

这段代码用于ListView,我认为ListBox中只有一个SelectedItem,你的方法将是这样的:

private void SerchResultList_SelectedIndexChanged(object sender, EventArgs e)
    {
        if (SerchResultList.SelectedItem != null)
        {
            Form2 = new Form2(SerchResultList.SelectedItem);
        }
    }

你应该把你的数据列表框作为列表框的项目给你,你应该覆盖你的.ToString()方法数据calss在ListBox中显示你需要的数据。