ThisAddIn.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Xml.Linq;
  6. using Word = Microsoft.Office.Interop.Word;
  7. using Office = Microsoft.Office.Core;
  8. using Microsoft.Office.Tools.Word;
  9. using Microsoft.Office.Core;
  10. using HTEXLabel;
  11. using System.Threading;
  12. using System.Windows.Forms;
  13. using static HTEXMark.QRCodeForm;
  14. namespace HTEXMark
  15. {
  16. public partial class ThisAddIn
  17. {
  18. int clickNumber = 0; //用于防止多次添加点击事件
  19. private void ThisAddIn_Startup(object sender, System.EventArgs e)
  20. {
  21. }
  22. private void ThisAddIn_Shutdown(object sender, System.EventArgs e)
  23. {
  24. }
  25. #region VSTO 生成的代码
  26. /// <summary>
  27. /// 设计器支持所需的方法 - 不要修改
  28. /// 使用代码编辑器修改此方法的内容。
  29. /// </summary>
  30. private void InternalStartup()
  31. {
  32. this.Startup += new System.EventHandler(ThisAddIn_Startup);
  33. this.Shutdown += new System.EventHandler(ThisAddIn_Shutdown);
  34. }
  35. #endregion
  36. }
  37. }