12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Forms;
- namespace AutoNum
- {
- public partial class AutoNumForm : Form
- {
- public AutoNumForm()
- {
- InitializeComponent();
- }
- private void btnRun_Click(object sender, EventArgs e)
- {
- Cmd cmd = new Cmd();
- cmd.ChangeNum(txtPre.Text,Convert.ToInt32(cmbLength.Text),Convert.ToInt32(cmdStartNum.Text));
- //命令执行完后,关闭窗口
- this.Close();
- }
- }
- }
|