[TOOL/ADVANCED INSTALLER] Outlook VSTO의 FormRegion 등록하기
■ Outlook VSTO의 FormRegion을 등록하는 방법을 보여준다. 1. 아래와 같이 왼쪽 목록에서 [Registry] 항목을 선택한다. 2. 아래와 같이 새로운 키를 생성한다. ▶
■ Outlook VSTO의 FormRegion을 등록하는 방법을 보여준다. 1. 아래와 같이 왼쪽 목록에서 [Registry] 항목을 선택한다. 2. 아래와 같이 새로운 키를 생성한다. ▶
■ FormRegionBase 클래스의 FormRegionShowing 이벤트를 사용해 폼 영역 표시 여부를 설정하는 방법을 보여준다. ▶ MainFormRegion.cs
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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
using Microsoft.Office.Interop.Outlook; using Microsoft.Office.Tools.Outlook; using System; namespace TestProject { /// <summary> /// 메인 폼 영역 /// </summary> partial class MainFormRegion { //////////////////////////////////////////////////////////////////////////////////////////////////// Class ////////////////////////////////////////////////////////////////////////////////////////// Public #region 메인 폼 영역 팩토리 - MainFormRegionFactory /// <summary> /// 메인 폼 영역 팩토리 /// </summary> [FormRegionMessageClass(FormRegionMessageClassAttribute.Note)] [FormRegionName("TestProject.MainFormRegion")] public partial class MainFormRegionFactory { //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Private #region 메인 폼 영역 팩토리 폼 영역 초기화시 처리하기 - MainFormRegionFactory_FormRegionInitializing(sender, e) /// <summary> /// 메인 폼 영역 팩토리 폼 영역 초기화시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void MainFormRegionFactory_FormRegionInitializing(object sender, FormRegionInitializingEventArgs e) { } #endregion } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Private #region 메인 폼 영역 폼 영역 표시전 처리하기 - MainFormRegion_FormRegionShowing(sender, e) /// <summary> /// 메인 폼 영역 폼 영역 표시전 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void MainFormRegion_FormRegionShowing(object sender, EventArgs e) { MailItem mailItem = OutlookItem as MailItem; Folder folder = mailItem.Parent as Folder; if(folder.Name == "받은 편지함") { OutlookFormRegion.Visible = true; } else { OutlookFormRegion.Visible = false; } } #endregion #region 메인 폼 영역 폼 영역 닫은 후 처리하기 - MainFormRegion_FormRegionClosed(sender, e) /// <summary> /// 메인 폼 영역 폼 영역 닫은 후 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void MainFormRegion_FormRegionClosed(object sender, EventArgs e) { } #endregion } } |
▶ CustomAddIn.cs
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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
using System; namespace TestProject { /// <summary> /// 커스텀 애드인 /// </summary> public partial class CustomAddIn { //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Private //////////////////////////////////////////////////////////////////////////////// Event #region 커스텀 애드인 시작시 처리하기 - CustomAddIn_Startup(sender, e) /// <summary> /// 커스텀 애드인 시작시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void CustomAddIn_Startup(object sender, EventArgs e) { } #endregion #region 커스텀 애드인 셧다운시 처리하기 - CustomAddIn_Shutdown(sender, e) /// <summary> /// 커스텀 애드인 셧다운시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void CustomAddIn_Shutdown(object sender, EventArgs e) { } #endregion //////////////////////////////////////////////////////////////////////////////// Function #region VSTO에서 생성한 코드 /// <summary> /// 디자이너 지원에 필요한 메서드입니다. /// 이 메서드의 내용을 코드 편집기로 수정하지 마세요. /// </summary> private void InternalStartup() { this.Startup += new System.EventHandler(CustomAddIn_Startup ); this.Shutdown += new System.EventHandler(CustomAddIn_Shutdown); } #endregion } } |
TestProject.zip
■ 양식 영역(Form Region)을 사용하는 방법을 보여준다. ▶ MailFormRegion.cs
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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 |
using Microsoft.Office.Tools.Outlook; using System; namespace TestProject { /// <summary> /// 메일 양식 영역 /// </summary> partial class MailFormRegion { //////////////////////////////////////////////////////////////////////////////////////////////////// Class ////////////////////////////////////////////////////////////////////////////////////////// Public #region 메일 양식 영역 팩터리 - MailFormRegionFactory /// <summary> /// 메일 양식 영역 팩토리 /// </summary> [FormRegionMessageClass(FormRegionMessageClassAttribute.Note)] [FormRegionName("TestProject.MailFormRegion")] public partial class MailFormRegionFactory { //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Private #region 양식 영역 팩토리 초기화시 처리하기 - FormRegionFactory_FormRegionInitializing(sender, e) /// <summary> /// 양식 영역 팩토리 초기화시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void FormRegionFactory_FormRegionInitializing(object sender, FormRegionInitializingEventArgs e) { } #endregion } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Property ////////////////////////////////////////////////////////////////////////////////////////// Public #region 취소 여부 - Canceld /// <summary> /// 취소 여부 /// </summary> public bool Canceld { get { return this.cancelCheckBox.Checked; } } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Private #region 양식 영역 베이스 표시시 처리하기 - FormRegionBase_FormRegionShowing(sender, e) /// <summary> /// 양식 영역 베이스 표시시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void FormRegionBase_FormRegionShowing(object sender, EventArgs e) { } #endregion #region 양식 영역 베이스 양식 영역 닫은 경우 처리하기 - FormRegionBase_FormRegionClosed(sender, e) /// <summary> /// 양식 영역 베이스 양식 영역 닫은 경우 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void FormRegionBase_FormRegionClosed(object sender, EventArgs e) { } #endregion } } |
▶ CustomAddIn.cs
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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 |
using Microsoft.Office.Interop.Outlook; using System; namespace TestProject { /// <summary> /// 커스텀 애드인 /// </summary> public partial class CustomAddIn { //////////////////////////////////////////////////////////////////////////////////////////////////// Field ////////////////////////////////////////////////////////////////////////////////////////// Private #region Field /// <summary> /// 애플리케이션 /// </summary> private Application application = null; #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Private //////////////////////////////////////////////////////////////////////////////// Event #region 커스텀 애드인 시작시 처리하기 - CustomAddIn_Startup(sender, e) /// <summary> /// 커스텀 애드인 시작시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void CustomAddIn_Startup(object sender, EventArgs e) { this.application = Application; this.application.ItemSend += application_ItemSend; } #endregion #region 커스텀 애드인 셧다운시 처리하기 - CustomAddIn_Shutdown(sender, e) /// <summary> /// 커스텀 애드인 셧다운시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void CustomAddIn_Shutdown(object sender, EventArgs e) { } #endregion #region 애플리케이션 항목 발송시 처리하기 - application_ItemSend(item, cancel) /// <summary> /// 애플리케이션 항목 발송시 처리하기 /// </summary> /// <param name="item">항목</param> /// <param name="cancel">취소 여부</param> private void application_ItemSend(object item, ref bool cancel) { WindowFormRegionCollection collection = Globals.FormRegions[this.application.ActiveInspector()]; bool canceled = collection.MailFormRegion.Canceld; System.Windows.Forms.MessageBox.Show(canceled.ToString()); if(canceled) { cancel = true; } } #endregion //////////////////////////////////////////////////////////////////////////////// Function #region VSTO에서 생성한 코드 /// <summary> /// 디자이너 지원에 필요한 메서드입니다. /// 이 메서드의 내용을 코드 편집기로 수정하지 마세요. /// </summary> private void InternalStartup() { this.Startup += new System.EventHandler(CustomAddIn_Startup ); this.Shutdown += new System.EventHandler(CustomAddIn_Shutdown); } #endregion } } |
TestProject.zip