C#操作dataGridView控件(一)

1.dataGridView控件是一个绑定并显示数据表的控件,这是我写的一个简单的测试界面

2.展示简单的操作功能,视频如下:

Demo视频

3.代码功能实现如下:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace WindowsFormsApp2
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        public static DataTable DT;
        public static int Rowindex;
        public static string path = "";//@"C:\Users\Administrator\Desktop\22.txt"


        private void Form1_Load(object sender, EventArgs e)
        {
            path = textBox4.Text;
            DT = Read_Point(path);
            dataGridView1.Columns.Clear();
            dataGridView1.DataSource = DT;
        }

        public static DataTable Read_Point(string path)
        {
            DataTable dt = new DataTable();
            DataColumn col1 = new DataColumn("序号", typeof(int));
            dt.Columns.Add(col1);
            DataColumn col2 = new DataColumn("X", typeof(string));
            dt.Columns.Add(col2);
            DataColumn col3 = new DataColumn("Y", typeof(string));
            dt.Columns.Add(col3);
            DataColumn col4 = new DataColumn("Z", typeof(string));
            dt.Columns.Add(col4);


            try
            {

                using (StreamReader srIn = new StreamReader(path, Encoding.Default))
                {
                    string msg = string.Empty;
                    int i = 0;
                    while (!srIn.EndOfStream)
                    {
                        msg = srIn.ReadLine();//下一行
                        string[] listIn;// = new string[7];
                        listIn = msg.Split(',');

                        if (listIn.Length < 2)
                            continue;

                        DataRow row = dt.NewRow();

                        row[0] = i;
                        row[1] = listIn[0];
                        row[2] = listIn[1];
                        row[3] = listIn[2];
                        //row[4] = listIn[3];
                        if (i <= dt.Rows.Count) i++;
                        else i = 0;
                        dt.Rows.Add(row);

                    }
                }
            }
            catch (Exception ex)
            {

            }
            return dt;
        }

        public static void Write_configload(string path)
        {
            if (File.Exists(path))
            {
                File.Delete(path);
            }

           
            using (FileStream fs = new FileStream(path, FileMode.CreateNew, FileAccess.Write, FileShare.ReadWrite))
            {
                using (StreamWriter sw = new StreamWriter(fs))
                {

                    //读txt文件,并把配置信息写入内存
                    for (int i = 0; i < DT.Rows.Count; i++)
                    {                                               
                        string temp = DT.Rows[i]["X"].ToString()+","+ DT.Rows[i]["Y"].ToString()+","+DT.Rows[i]["Z"].ToString();
                        sw.WriteLine(temp);
                    }
                   
                }
            }
        }


        private void button1_Click(object sender, EventArgs e)
        {
            //string temp = textBox1.Text + "," + textBox2.Text + "," + textBox3.Text;
            DataRow row = DT.NewRow();
            row[0] = DT.Rows.Count;
            row[1] = textBox1.Text;
            row[2] = textBox2.Text;
            row[3] = textBox3.Text;
            //DataPoint.Add(temp);
            DT.Rows.Add(row);
        }

        private void button2_Click(object sender, EventArgs e)
        {
            DataRow row = DT.NewRow();
            row[0] = Rowindex;
            row[1] = textBox1.Text;
            row[2] = textBox2.Text;
            row[3] = textBox3.Text;
            DT.Rows.InsertAt(row, Rowindex);

            
            for (int i = 0; i < DT.Rows.Count; i++)
            {
                DT.Rows[i][0]=i;               
            }

        }

        private void button3_Click(object sender, EventArgs e)
        {
            DT.Rows.RemoveAt(Rowindex);
            for (int i = 0; i < DT.Rows.Count; i++)
            {
                DT.Rows[i][0] = i;
            }
        }

        private void button4_Click(object sender, EventArgs e)
        {
            DT.Rows.Clear();
        }

        private void button5_Click(object sender, EventArgs e)
        {
            Write_configload(path);
        }

        private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)
        {
            Rowindex = e.RowIndex;
        }
    }
}
 

4.若有疑问,留言沟通,感谢浏览!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

qq_47190500

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值