form_carinput.cs
来自「以前为一家4S店开发的维修管理及客户管理的软件,C#开发!」· CS 代码 · 共 50 行
CS
50 行
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_carinput : RepairCRM.main
{
public Form_carinput()
{
InitializeComponent();
}
private void groupBox1_Enter(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 panel1_Paint(object sender, PaintEventArgs e)
{
}
private void button3_Click(object sender, EventArgs e)
{
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?