-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathThisAddIn.cs
More file actions
39 lines (32 loc) · 996 Bytes
/
Copy pathThisAddIn.cs
File metadata and controls
39 lines (32 loc) · 996 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Linq;
using Excel = Microsoft.Office.Interop.Excel;
using Office = Microsoft.Office.Core;
using Microsoft.Office.Tools.Excel;
using System.Data;
using System.Windows.Forms;
using System.IO;
using ExcelAddIn4Pdf.Util;
namespace ExcelAddIn4Pdf
{
public partial class ThisAddIn
{
private void ThisAddIn_Startup(object sender, System.EventArgs e)
{
}
private void ThisAddIn_Shutdown(object sender, System.EventArgs e)
{
}
#region VSTO 生成的代码
/// <summary>设计器支持所需的方法 - 不要使用代码编辑器修改此方法的内容。</summary>
private void InternalStartup()
{
this.Startup += new System.EventHandler(ThisAddIn_Startup);
this.Shutdown += new System.EventHandler(ThisAddIn_Shutdown);
}
#endregion
}
}