aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/DeveloperModule.cs
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2017-12-13 18:50:24 +0200
committerRoy Ben-Shabat <Roy@Twine-s.com>2017-12-13 18:50:24 +0200
commit471daec51d0fc9437f8551d5d48c9fa2fb031871 (patch)
tree1ecd78d48d761c18936b311d4e3d8eb8ebfb3cd1 /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/DeveloperModule.cs
parent2a51f05523c1397b77eca5e5188520919205638c (diff)
downloadTango-471daec51d0fc9437f8551d5d48c9fa2fb031871.tar.gz
Tango-471daec51d0fc9437f8551d5d48c9fa2fb031871.zip
Machine Studio, Dynamic Module Loading...
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/DeveloperModule.cs')
-rw-r--r--Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/DeveloperModule.cs43
1 files changed, 43 insertions, 0 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/DeveloperModule.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/DeveloperModule.cs
new file mode 100644
index 000000000..aefe9b62d
--- /dev/null
+++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/DeveloperModule.cs
@@ -0,0 +1,43 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows;
+using System.Windows.Media.Imaging;
+using Tango.MachineStudio.Common;
+using Tango.MachineStudio.Developer.Views;
+using Tango.SharedUI.Helpers;
+
+namespace Tango.MachineStudio.Developer
+{
+ public class DeveloperModule : IStudioModule
+ {
+ private bool _isInitialized;
+
+ public string Name => "Developer";
+
+ public string Description => "Research and development, manage RML, STRIP and Process.";
+
+ public BitmapSource Image => ResourceHelper.GetImageFromResources("Images/developer.jpg");
+
+ public FrameworkElement MainView => new MainView();
+
+ public bool IsInitialized => _isInitialized;
+
+ public void Dispose()
+ {
+ throw new NotImplementedException();
+ }
+
+ public void Initialize()
+ {
+ if (!_isInitialized)
+ {
+ //Initialize..
+
+ _isInitialized = true;
+ }
+ }
+ }
+}