form_customerinput.cs

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

CS
63
字号
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_customerinput : RepairCRM.main
    {
        public Form_customerinput()
        {
            InitializeComponent();
        }

        private void Form_customerinput_Load(object sender, EventArgs e)
        {

        }


        private void button1_Click(object sender, EventArgs e)
        {
            OpenFileDialog newfile = new OpenFileDialog();
            if ( newfile.ShowDialog(this)==DialogResult.OK) {
                picture.Width = 42;
                picture.Height = 42;
                picture.ImageLocation = newfile.FileName;
            }
        }

        private void button3_Click(object sender, EventArgs e)
        {
            brithdayvalue.Text = "";
            companyvlaue.Text = "";
            costmortypevalue.Text = "";
            emailvalue.Text = "";
            moblervalue.Text = "";
            xielivalue.Text = "";
            pdatevalue.Text="";
            phonevlaue.Text="";
            positionvalue.Text="";
            namevalue.Text = "";
            ybvalue.Text = "";
            ybvalue.Text = "";
            addressvalue.Text = "";
            icvalue.Text = "";
            bzvlaue.Text = "";
            picture.ImageLocation = "";
            costmortypevalue.Text = "";

        }

    

  
    }
}

⌨️ 快捷键说明

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