From ca50e0c8fc88acd06d6e1932e9412464bff95edb Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Tue, 12 Jun 2018 19:04:09 +0300 Subject: Working on PPC modules and loading. --- Software/Visual_Studio/PPC/Tango.PPC.Common/IPPCModule.cs | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/IPPCModule.cs') diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/IPPCModule.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/IPPCModule.cs index 6c9bf3892..4226e7aad 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.Common/IPPCModule.cs +++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/IPPCModule.cs @@ -16,6 +16,11 @@ namespace Tango.PPC.Common /// public interface IPPCModule : IDisposable { + /// + /// Occurs when the module has been initialized. + /// + event EventHandler Initialized; + /// /// Gets the module name. /// @@ -36,11 +41,6 @@ namespace Tango.PPC.Common /// Type MainViewType { get; } - /// - /// Gets or sets a value indicating whether this module is shown under a new window. - /// - bool InNewWindow { get; set; } - /// /// Gets the permission required to see and load this module. /// @@ -55,10 +55,5 @@ namespace Tango.PPC.Common /// Perform any operations required to initialize this module. /// void Initialize(); - - /// - /// Sets a value indicating whether this module is loaded. - /// - bool IsLoaded { set; get; } } } -- cgit v1.3.1