hytos / ID2.Manager / ExcelAddin / ID2ManagerImport / ThisAddIn.cs @ a23cd008
이력 | 보기 | 이력해설 | 다운로드 (975 Bytes)
1 | 43ceb5b3 | taeseongkim | using System; |
---|---|---|---|
2 | using System.Collections.Generic; |
||
3 | using System.Linq; |
||
4 | using System.Text; |
||
5 | using System.Xml.Linq; |
||
6 | using Excel = Microsoft.Office.Interop.Excel; |
||
7 | using Office = Microsoft.Office.Core; |
||
8 | using Microsoft.Office.Tools.Excel; |
||
9 | |||
10 | namespace ID2ManagerImport |
||
11 | { |
||
12 | public partial class ThisAddIn |
||
13 | { |
||
14 | private void ThisAddIn_Startup(object sender, System.EventArgs e) |
||
15 | { |
||
16 | } |
||
17 | |||
18 | private void ThisAddIn_Shutdown(object sender, System.EventArgs e) |
||
19 | { |
||
20 | } |
||
21 | |||
22 | |||
23 | #region VSTO에서 생성한 코드 |
||
24 | |||
25 | /// <summary> |
||
26 | /// 디자이너 지원에 필요한 메서드입니다. |
||
27 | /// 이 메서드의 내용을 코드 편집기로 수정하지 마세요. |
||
28 | /// </summary> |
||
29 | private void InternalStartup() |
||
30 | { |
||
31 | this.Startup += new System.EventHandler(ThisAddIn_Startup); |
||
32 | this.Shutdown += new System.EventHandler(ThisAddIn_Shutdown); |
||
33 | } |
||
34 | |||
35 | #endregion |
||
36 | } |
||
37 | } |