AutoNumForm.cs 676 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10. namespace AutoNum
  11. {
  12. public partial class AutoNumForm : Form
  13. {
  14. public AutoNumForm()
  15. {
  16. InitializeComponent();
  17. }
  18. private void btnRun_Click(object sender, EventArgs e)
  19. {
  20. Cmd cmd = new Cmd();
  21. cmd.ChangeNum(txtPre.Text,Convert.ToInt32(cmbLength.Text),Convert.ToInt32(cmdStartNum.Text));
  22. //命令执行完后,关闭窗口
  23. this.Close();
  24. }
  25. }
  26. }