_atagridview :实时显示数据
_heckbox :指示是否停止更新
_icturebox :显示更新状态
_rackBar1 :设置更新时间频率
_abel :显示一些相关信息
?
_
?1 using System
?2 using System.Collections.Generic
?3 using System.ComponentModel
?4 using System.Data
?5 using System.Drawing
?6 using System.Text
?7 using System.Windows.Forms
?8 using System.Threading
?9
?10 namespace WinMilkProject.Project
?11 {
?12
?13 public partial class Form1 : Form
?14 {
?15 Thread myThread
?16 OperateCB operatedb = new OperateCB()
?17 public int frequency = 0//更新时间频率
?18 public static bool isUse = false//是否停止更新
?19 public static string statusInfo = string.Empty//状态
?20 private delegate void myDelegate(DataTable dt)//定义委托
?21 public Form1()
?22 {
?23 InitializeComponent()
?24 label2.Text = "更新频率为:" + (trackBar1.Value / 1000).ToString() + "秒"
?25 }
?26
?27 private void Form1_Load(object sender, EventArgs e)
?28 {
?29 myThread = new Thread(startFillDv)//实例化线程
?30 myThread.Start()
?31
?32 }
?33
?34 private void startFillDv()
?35 {
?36 while (true)
?37 {
?38 if (isUse)
?39 {
?40 statusInfo = "正在实时更新数据......"
?41 DataTable dt = operatedb.MyDataTable("select * from test1")//把自己写的数据封装类OperaterCB 能够返回一个datatable
?42 Grid(dt)
?43 Thread.Sleep(frequency)
?44 }
?45 else
?46 {
?47 statusInfo = "停止更新!"
?48 }
?49 }
?50
?51 }
?52
?53 private void Grid(DataTable dt)
?54 {
?55 if (this.InvokeRequired)
?56 {
?57 this.Invoke(new myDelegate(Grid), new object[] { dt })
?58 }
?59 else
?60 {
?61 try
?62 {
?63 this.dataGridView1.DataSource = null
?64 this.dataGridView1.DataSource = dt
?65 dt = null
?66 statusInfo = "更新完成!"
?67 }
?68 catch
?69 {
?70
?71 }
?72 }
?73
?74 }
?75
?76 private void Form1_FormClosed(object sender, FormClosedEventArgs e)
?77 {
?78 if (this.myThread.IsAlive)
?79 {
?80 this.myThread.Abort()//结束线程
?81 }
?82 }
?83
?84 private void timer1_Tick(object sender, EventArgs e)
?85 {
?86 label1.Text = statusInfo
?87 frequency = trackBar1.Value
?88 if (statusInfo.Trim() == "正在实时更新数据......")
?89 {
?90 pictureBox1.Visible = true
?91 }
?92 else
?93 {
?94 pictureBox1.Visible = false
?95 }
?96
?97 }
?98
?99 private void checkBox1_CheckedChanged(object sender, EventArgs e)
?100 {
?101 if (checkBox1.Checked)
?102 {
?103 isUse = true
?104 }
?105 else
?106 {
?107 isUse = false
?108 }
?109
?110 }
?111
?112 private void trackBar1_Scroll(object sender, EventArgs e)
?113 {
?114 label2.Text = "更新频率为:" + (trackBar1.Value / 1000).ToString() + "秒"
?115 }
?116
?117 }
?118 }
_
应该是 datagridview吧,添加一个 datagridview,然后有两种方式绑定数据库,一种是彻底用代码 来连接数据库 和 绑定数据库,还有一种就是用 vs 菜单栏中的 数据 下面的 添加数据源,然后你根据他的向导 一步一步连接你的数据库。用代码连接数据库的话如下:
SqlConnection con = new SqlConnection("server = .database = 你要连接的数据库名称uid = sapwd = ");
这个连接字符串我解释一下:那个 server = . ,这个.表示连接的本地服务器, database = ,后面是你要连接的数据库名称, uid = sa,这个sa是sql server2000默认的用户帐号,当然也可以改成你自己的用户帐号,pwd = ,这是密码,没有密码就为空就可以了,有的话,填上去。
连好了数据库,接下来 就是进行绑定。
//连接数据库并填充和显示
SqlConnection con = new SqlConnection("server = .database = 你要连接的数据库名称uid=sapwd=")
//con.Open()
SqlDataAdapter sda = new SqlDataAdapter("select * from mytable", con)
DataSet ds = new DataSet()
sda.Fill(ds)
DataGridView1.DataSource = ds.Tables[0]
//con.Close()
就是datagridview的行是否为新增还是修改的还是已保存(Unchange)如下:
if
(this.dataGridView1.Rows[0].DataBoundItem==null)//未写到datatable的新行
{
}
else
{
if
(((DataRowView)this.dataGridView1.Rows[0].DataBoundItem).Row.RowState
==
DataRowState.Added)//
已写到datatable的新行
{
}
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)