来源:世杰游戏下载/时间:2025-04-02 15:29/作者:
在当今的软件开发领域,数据的管理和操作是一个基本而重要的任务。特别是在Windows应用程序开发中,使用Winform进行数据的增、删、改、查操作是非常常见的需求。本文将通过一个简单的案例,演示如何使用Winform和DataGridView控件实现数据的增、删、改、查功能。
在开始之前,我们需要确保开发环境已搭建好。使用Visual Studio作为开发工具,建议选择.NET Framework 4.5及以上版本。我们将创建一个新的Winform应用项目,并在窗体中添加DataGridView控件。
为了进行数据的增、删、改、查,我们需要有一个数据源。为了简单起见,这里我们可以使用一个DataTable作为数据源。以下是创建DataTable的示例代码:
csharp DataTable dt = new DataTable(); dt.Columns.Add(ID, typeof(int)); dt.Columns.Add(Name, typeof(string)); dt.Columns.Add(Age, typeof(int)); // 添加示例数据 dt.Rows.Add(1, 张三, 25); dt.Rows.Add(2, 李四, 30);这段代码创建了一个含有三个字段(ID、Name 和 Age)的数据表,并添加了两行示例数据。
在窗体中拖放一个DataGridView控件,并设置其DataSource属性为刚才创建的DataTable。以下为示例代码:
csharp dataGridView1.DataSource = dt;这将使DataGridView显示DataTable中的数据。
我们需要为增、删、改按钮添加事件处理程序。以下是每个功能的实现代码示例:
1. 增加数据
csharp private void btnAdd_Click(object sender, EventArgs e) { DataRow newRow = dt.NewRow(); newRow[ID] = dt.Rows.Count + 1; // 新增ID newRow[Name] = txtName.Text; // 从文本框获取名字 newRow[Age] = Convert.ToInt32(txtAge.Text); // 从文本框获取年龄 dt.Rows.Add(newRow); }此代码会从文本框中获取用户输入的姓名和年龄,然后将新行添加到DataTable中。
2. 修改数据
csharp private void btnEdit_Click(object sender, EventArgs e) { if (dataGridView1.CurrentRow != null) { DataGridViewRow row = dataGridView1.CurrentRow; row.Cells[Name].Value = txtName.Text; row.Cells[Age].Value = Convert.ToInt32(txtAge.Text); } }此代码会修改用户选中的行数据,将其更新为文本框中的值。
3. 删除数据
csharp private void btnDelete_Click(object sender, EventArgs e) { if (dataGridView1.CurrentRow != null) { dataGridView1.Rows.Remove(dataGridView1.CurrentRow); } }此代码会删除用户选中的行。
为了实现查询功能,我们可以在文本框中输入要搜索的名称,并通过过滤DataTable来刷新DataGridView的数据。以下是查询的实现代码:
csharp private void btnSearch_Click(object sender, EventArgs e) { string filter = string.Format(Name LIKE %{0}%, txtSearch.Text); DataView dv = new DataView(dt); dv.RowFilter = filter; dataGridView1.DataSource = dv; }此代码会根据用户在查询框中输入的名称进行过滤,并更新DataGridView的显示。
以上就是一个简单的Winform增删改查的案例,通过使用DataGridView控件和DataTable,我们能够轻松地实现数据的基本操作。通过这样的示例,可以帮助初学者快速掌握Winform开发中的数据处理逻辑。
随着项目的深入,您可以考虑连接数据库、使用ORM框架等来实现更复杂的增删改查功能。希望本文的示例能对你的学习和开发有所帮助!
相关文章
本周
本月