我知道这个问题已经被问过很多次关于如何创建搜索按钮的问题。我对 C# 编程非常陌生,我很难创建搜索,只是没有从其他帖子中找到我想要的东西。所以我希望有人能帮助我。
我创建了一个 Windows 窗体应用程序,并且我使用数据集中的“详细信息”视图进行了表单设置,当我从一个记录滚动到另一个记录时,数据在应用程序中正确显示。我的数据存储在 sdf 文件中。我想让人们输入一个“帐号”或一个人的“姓氏”,然后能够点击搜索按钮。在搜索按钮之后,预先安排的字段将更新信息。为了能够选择“姓氏”或“帐号”,如果需要,我可以在组合框中列出项目。
我已经包含了代码的副本,其中一些项目的命名已更改,以免泄露我的职业。任何帮助是极大的赞赏。
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void custtableBindingNavigatorSaveItem_Click(object sender, EventArgs e)
{
this.Validate();
this.custtableBindingSource.EndEdit();
this.tableAdapterManager.UpdateAll(this.custDataSet);
}
private void label1_Click(object sender, EventArgs e)
{
}
private void tableLayoutPanel1_Paint(object sender, PaintEventArgs e)
{
}
private void custtableBindingNavigatorSaveItem_Click_1(object sender, EventArgs e)
{
this.Validate();
this.custtableBindingSource.EndEdit();
this.tableAdapterManager.UpdateAll(this.custDataSet);
}
private void Form1_Load(object sender, EventArgs e)
{
// TODO: This line of code loads data into the 'custDataSet.custtable' table. You can move, or remove it, as needed.
this.custtableTableAdapter.Fill(this.custDataSet.custtable);
}
private void file_Name_12TextBox_TextChanged(object sender, EventArgs e)
{
}
private void fillByToolStripButton_Click(object sender, EventArgs e)
{
try
{
this.custtableTableAdapter.FillBy(this.custDataSet.custtable);
}
catch (System.Exception ex)
{
System.Windows.Forms.MessageBox.Show(ex.Message);
}
}
private void btnfind_Click(object sender, EventArgs e)
{
}
}
}