00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 using System;
00013 using System.Windows.Forms;
00014 using Mcs.Epm.MicrosoftProject.mpFx.Client.Shared;
00015
00016 namespace Mcs.Epm.MicrosoftProject.mpFx.Client.Plugins.EventHandlersPlugin.Controls
00017 {
00018
00019
00020
00021 public partial class OptionsControl : UserControl, IOptionsControl
00022 {
00023 #region Instance Data
00024
00025 private EventHandlerPlugIn _EventHandlerPlugin;
00026
00027 #endregion
00028
00029 #region Constructors
00030
00031 public OptionsControl(EventHandlerPlugIn eventHandlerPlugin)
00032 {
00033 InitializeComponent();
00034
00035 if (eventHandlerPlugin == null)
00036 {
00037 throw new ArgumentNullException("eventHandlerPlugin");
00038 }
00039
00040 _EventHandlerPlugin = eventHandlerPlugin;
00041 }
00042
00043 #endregion
00044
00045 #region IOptionsControl Members
00046
00047 public void SaveSettings()
00048 {
00049
00050 }
00051
00052 #endregion
00053
00054 }
00055 }