frmThumbtackText.cs 712 B

123456789101112131415161718192021222324252627282930
  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.Windows.Forms;
  9. namespace LYFZ.Software.NewCameraControlBook
  10. {
  11. public partial class frmThumbtackText : LYFZ.ComponentLibrary.BaseContentsFormMain
  12. {
  13. public frmThumbtackText()
  14. {
  15. InitializeComponent();
  16. }
  17. private void buttonEx2_Click(object sender, EventArgs e)
  18. {
  19. this.DialogResult = DialogResult.Cancel;
  20. }
  21. private void buttonEx1_Click(object sender, EventArgs e)
  22. {
  23. this.DialogResult = DialogResult.OK;
  24. }
  25. }
  26. }