From e952c7c3e5c4441b60dc0b2dc1641459a35731e3 Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Sun, 14 Jan 2018 17:09:24 +0200 Subject: Added code comments for: MachineStudio.MachineDesigner. --- .../MachineDesignerModule.cs | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/MachineDesignerModule.cs') diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/MachineDesignerModule.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/MachineDesignerModule.cs index db937028b..ca13bd350 100644 --- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/MachineDesignerModule.cs +++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/MachineDesignerModule.cs @@ -12,25 +12,53 @@ using Tango.SharedUI.Helpers; namespace Tango.MachineStudio.MachineDesigner { + /// + /// Represents a machine designer Machine Studio module providing an interactive GUI for managing machine configurations. + /// + /// public class MachineDesignerModule : IStudioModule { + /// + /// Gets the module name. + /// public string Name => "Machine Designer"; + /// + /// Gets the module description. + /// public string Description => "Provides a graphical control over machine configurations. Create, manage and deploy machine configurations using simple drag and drop interface."; + /// + /// Gets the module cover image. + /// public BitmapSource Image => ResourceHelper.GetImageFromResources("Images/machine-designer-module.jpg"); + /// + /// Gets the module entry point view. + /// public FrameworkElement MainView => new MainView(); + /// + /// Gets the permission required to see and load this module. + /// public Permissions Permission => Permissions.RunDeveloperModule; + /// + /// Gets a value indicating whether this module has been initialized. + /// public bool IsInitialized => true; + /// + /// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + /// public void Dispose() { } + /// + /// Perform any operations required to initialize this module. + /// public void Initialize() { -- cgit v1.3.1