--- trunk/RomCheater.PluginFramework/Core/UserControlPlugin.cs 2013/05/28 18:08:23 437 +++ trunk/RomCheater.PluginFramework/Core/UserControlPlugin.cs 2013/05/28 19:10:10 440 @@ -3,6 +3,7 @@ using System.Collections.Generic; using System.Linq; using System.Text; using RomCheater.PluginFramework.Interfaces; +using WeifenLuo.WinFormsUI.Docking; namespace RomCheater.PluginFramework.Core { @@ -28,5 +29,10 @@ namespace RomCheater.PluginFramework.Cor return ""; } } + + public abstract void Show(); + public abstract void Show(DockPanel dockPanel); + public abstract void Show(DockPanel dockPanel, DockState dockState); + public abstract void Config(); } }