You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
623 B

  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 ManagementSystem
  11. {
  12. public partial class CustomerProvide : Form
  13. {
  14. public CustomerProvide()
  15. {
  16. InitializeComponent();
  17. }
  18. #region 自定義程式
  19. #endregion
  20. #region 事件觸發及問題處理
  21. private void tsbExit_Click(object sender, EventArgs e)
  22. {
  23. this.Close();
  24. }
  25. #endregion
  26. }
  27. }