form_basic_customer.cs

来自「以前为一家4S店开发的维修管理及客户管理的软件,C#开发!」· CS 代码 · 共 46 行

CS
46
字号
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace RepairCRM
{
    public partial class Form_Basic_customer : RepairCRM.main
    {
        public Form_Basic_customer()
        {
            InitializeComponent();
        }

        private void Form_Basic_customer_Load(object sender, EventArgs e)
        {
            // TODO: 这行代码将数据加载到表“dataSet_Tables.customertype”中。您可以根据需要移动或移除它。
            //this.customertypeTableAdapter.Fill(this.dataSet_Tables.customertype);

        }

        

        

        
        
        

        private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
        {
            this.customertypeTableAdapter.Update(this.dataSet_Tables.customertype);
        }

        private void button5_Click(object sender, EventArgs e)
        {

        }

  }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?