C# 小技巧

C# 获取textbox行数

 

当textbox为多行时,获取它的行数:
int count = this.txtMsgInfo.Lines.GetUpperBound(0);

textbox显示定位到最后一行(最新一行)

 

this.textBox1.Select(this.txtMsgInfo.TextLength, 0);
this.textBox1.ScrollToCaret();

c#如何把一行数据插入到datatable里面去?

 
DataTable dt = new DataTable(); 
dt.Columns.Add("ID"); 
dt.Columns.Add("Name"); 
DataRow dr = dt.NewRow(); 
object[] objs = { 1, "Name" }; 
dr.ItemArray = objs; 
dt.Rows.Add(dr); 
this.dataGridView1.DataSource = dt;

posted @ 2020-07-18 14:10  蛟十五  阅读(209)  评论(0)    收藏  举报