- Timestamp:
- 11/25/14 05:15:09 (10 years ago)
- Location:
- branches/OptimizationNetworks/HeuristicLab.Networks.Views
- Files:
-
- 7 added
- 4 copied
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/OptimizationNetworks/HeuristicLab.Networks.Views/3.3/Programmable/UserDefinedNetworkView.Designer.cs
r11576 r11577 20 20 #endregion 21 21 22 namespace HeuristicLab. Core.Networks.Views {22 namespace HeuristicLab.Networks.Programmable.Views { 23 23 partial class UserDefinedNetworkView { 24 24 /// <summary> … … 46 46 private void InitializeComponent() { 47 47 this.codeTabPage = new System.Windows.Forms.TabPage(); 48 this.programmableItemView = new HeuristicLab. Core.Views.ProgrammableItemView();48 this.programmableItemView = new HeuristicLab.Scripting.Views.ProgrammableItemView(); 49 49 this.initializeButton = new System.Windows.Forms.Button(); 50 50 this.tabControl.SuspendLayout(); … … 116 116 117 117 protected System.Windows.Forms.TabPage codeTabPage; 118 protected HeuristicLab. Core.Views.ProgrammableItemView programmableItemView;118 protected HeuristicLab.Scripting.Views.ProgrammableItemView programmableItemView; 119 119 protected System.Windows.Forms.Button initializeButton; 120 120 } -
branches/OptimizationNetworks/HeuristicLab.Networks.Views/3.3/Programmable/UserDefinedNetworkView.cs
r11576 r11577 20 20 #endregion 21 21 22 using HeuristicLab.Core.Networks.Views; 22 23 using HeuristicLab.MainForm; 23 24 using System.Windows.Forms; 24 25 25 namespace HeuristicLab. Core.Networks.Views {26 namespace HeuristicLab.Networks.Programmable.Views { 26 27 [View("UserDefinedNetwork View")] 27 28 [Content(typeof(UserDefinedNetwork), true)] -
branches/OptimizationNetworks/HeuristicLab.Networks.Views/3.3/Programmable/UserDefinedNodeView.Designer.cs
r11576 r11577 20 20 #endregion 21 21 22 namespace HeuristicLab. Core.Networks.Views {22 namespace HeuristicLab.Networks.Programmable.Views { 23 23 partial class UserDefinedNodeView { 24 24 /// <summary> … … 49 49 this.portCollectionView = new HeuristicLab.Core.Networks.Views.PortCollectionView(); 50 50 this.codeTabPage = new System.Windows.Forms.TabPage(); 51 this.programmableItemView = new HeuristicLab. Core.Views.ProgrammableItemView();51 this.programmableItemView = new HeuristicLab.Scripting.Views.ProgrammableItemView(); 52 52 this.initializeButton = new System.Windows.Forms.Button(); 53 53 ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit(); … … 154 154 protected MainForm.WindowsForms.DragOverTabControl tabControl; 155 155 protected System.Windows.Forms.TabPage portsTabPage; 156 protected PortCollectionView portCollectionView;156 protected HeuristicLab.Core.Networks.Views.PortCollectionView portCollectionView; 157 157 protected System.Windows.Forms.TabPage codeTabPage; 158 protected HeuristicLab. Core.Views.ProgrammableItemView programmableItemView;158 protected HeuristicLab.Scripting.Views.ProgrammableItemView programmableItemView; 159 159 protected System.Windows.Forms.Button initializeButton; 160 160 -
branches/OptimizationNetworks/HeuristicLab.Networks.Views/3.3/Programmable/UserDefinedNodeView.cs
r11576 r11577 20 20 #endregion 21 21 22 using HeuristicLab.Core.Networks.Views; 22 23 using HeuristicLab.MainForm; 23 24 using System.Windows.Forms; 24 25 25 namespace HeuristicLab. Core.Networks.Views {26 namespace HeuristicLab.Networks.Programmable.Views { 26 27 [View("UserDefinedNode View")] 27 28 [Content(typeof(UserDefinedNode), true)]
Note: See TracChangeset
for help on using the changeset viewer.