WorkWidth.cs 687 B

123456789101112131415161718192021222324252627282930313233
  1. using HZH_Controls;
  2. using HZH_Controls.Controls;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.ComponentModel;
  6. using System.Data;
  7. using System.Drawing;
  8. using System.Linq;
  9. using System.Text;
  10. using System.Threading.Tasks;
  11. using System.Windows.Forms;
  12. namespace WinForms
  13. {
  14. public partial class WorkWidth : Form
  15. {
  16. public String selectValue;
  17. public WorkWidth()
  18. {
  19. InitializeComponent();
  20. }
  21. private void btnSubmit_Click(object sender, EventArgs e)
  22. {
  23. }
  24. private void btnCancel_Click(object sender, EventArgs e)
  25. {
  26. this.DialogResult = DialogResult.Cancel;
  27. }
  28. }
  29. }