ThisAddIn.cs 927 B

123456789101112131415161718192021222324252627282930313233343536
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Xml.Linq;
  6. using PowerPoint = Microsoft.Office.Interop.PowerPoint;
  7. using Office = Microsoft.Office.Core;
  8. using System.Windows;
  9. namespace HTEXTeach
  10. {
  11. public partial class ThisAddIn
  12. {
  13. private void ThisAddIn_Startup(object sender, System.EventArgs e)
  14. {
  15. }
  16. private void ThisAddIn_Shutdown(object sender, System.EventArgs e)
  17. {
  18. }
  19. #region VSTO 生成的代码
  20. /// <summary>
  21. /// 设计器支持所需的方法 - 不要修改
  22. /// 使用代码编辑器修改此方法的内容。
  23. /// </summary>
  24. private void InternalStartup()
  25. {
  26. this.Startup += new System.EventHandler(ThisAddIn_Startup);
  27. this.Shutdown += new System.EventHandler(ThisAddIn_Shutdown);
  28. }
  29. #endregion
  30. }
  31. }