[VSTO] 開發 Office 增益集 - Hello World

開發 Office 增益集–Hello World

先新增 Office 增益集專案,以 Excel 為例。

檔案 –> 新增專案 –> Office –> Excel 2010 增益集

image

 

專案新增後,會看到一個 ThisAddIn.cs ,這就是主要的入口了,裡面會有兩個 function,一個叫 ThisAddIn_Startup,一個叫 ThisAddIn_Shutdown 。

這兩個 function 很容易理解,在 Excel 執行的時候,會執行 ThisAddIn_Startup 裡面的程式;而在 Excel 關閉的時候,則會執行 ThisAddIn_Shutdown 裡面的程式。

 

不可免俗的寫個 Hello World 吧。

image

 

在 ThisAddIn_Startup 加進  MessageBox.Show("Hello World");  然後 F5 執行就行了。

記得要先 using System.Windows.Forms; 。

 

這就是我們的第一個增益集程式了。