手机
当前位置:查字典教程网 >编程开发 >C#教程 >C#实现绑定DataGridView与TextBox之间关联的方法
C#实现绑定DataGridView与TextBox之间关联的方法
摘要:本文实例讲述了C#实现绑定DataGridView与TextBox之间关联的方法。分享给大家供大家参考。具体实现方法如下:usingSyst...

本文实例讲述了C#实现绑定DataGridView与TextBox之间关联的方法。分享给大家供大家参考。具体实现方法如下:

using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace System.Windows.Forms.Samples { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { /* Create a DataSet with 1 DataTable */ DataSet dataSet = new DataSet(); DataTable dataTable = dataSet.Tables.Add("Numbers"); dataTable.Columns.Add("ID", typeof(int)); dataTable.Columns.Add("Name", typeof(string)); dataTable.Rows.Add(0, "Zero"); dataTable.Rows.Add(1, "One"); CurrencyManager cm; /* Get a CurrencyManager */ // cm = (this.BindingContext[dataSet, "Numbers"] as CurrencyManager); /* This gets a different CurrencyManager */ cm = (this.BindingContext[dataTable] as CurrencyManager); /* Bind left DataGridView and TextBox */ this.dataGridView1.DataSource = dataSet; this.dataGridView1.DataMember = "Numbers"; this.textBox1.DataBindings.Add("Text", dataSet, "Numbers.Name", true); /* Bind left DataGridView and TextBox */ this.dataGridView2.DataSource = dataTable; this.textBox2.DataBindings.Add("Text", dataTable, "Name", true); } } }

希望本文所述对大家的C#程序设计有所帮助。

【C#实现绑定DataGridView与TextBox之间关联的方法】相关文章:

C#中Array与ArrayList用法及转换的方法

C# 运用params修饰符来实现变长参数传递的方法

C#中Web.Config加密与解密的方法

使用C#获取系统特殊文件夹路径的解决方法

C# SkinEngine控件 给窗体添加皮肤的方法

C#+MO实现一些渲染功能

C#与SQL连接:GridView控件对数据库的操作

c#实现隐藏与显示任务栏的方法详解

C#中读写INI文件的方法例子

C#打包应用程序,与.NETFramework介绍

精品推荐
分类导航