Changeset 5287 for trunk/sources/HeuristicLab.Operators.Programmable
- Timestamp:
- 01/12/11 09:13:15 (14 years ago)
- Location:
- trunk/sources/HeuristicLab.Operators.Programmable/3.3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/sources/HeuristicLab.Operators.Programmable/3.3/ProgrammableOperator.cs ¶
r5217 r5287 52 52 } 53 53 54 public override System.Drawing.Image ItemImage { get { return VS 2008ImageLibrary.Script; } }54 public override System.Drawing.Image ItemImage { get { return VSImageLibrary.Script; } } 55 55 56 56 private MethodInfo executeMethod; -
TabularUnified trunk/sources/HeuristicLab.Operators.Programmable/3.3/ProgrammableOperatorView.Designer.cs ¶
r5218 r5287 120 120 // splitContainer2 121 121 // 122 this.splitContainer2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 123 | System.Windows.Forms.AnchorStyles.Left) 122 this.splitContainer2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 123 | System.Windows.Forms.AnchorStyles.Left) 124 124 | System.Windows.Forms.AnchorStyles.Right))); 125 125 this.splitContainer2.Location = new System.Drawing.Point(0, 33); … … 183 183 // showCodeButton 184 184 // 185 this.showCodeButton.Image = HeuristicLab.Common.Resources.VS 2008ImageLibrary.PrintPreview;185 this.showCodeButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.PrintPreview; 186 186 this.showCodeButton.Location = new System.Drawing.Point(33, 3); 187 187 this.showCodeButton.Name = "showCodeButton"; … … 195 195 // compileButton 196 196 // 197 this.compileButton.Image = HeuristicLab.Common.Resources.VS 2008ImageLibrary.Script;197 this.compileButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Script; 198 198 this.compileButton.Location = new System.Drawing.Point(3, 3); 199 199 this.compileButton.Name = "compileButton"; … … 219 219 // tabControl1 220 220 // 221 this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 222 | System.Windows.Forms.AnchorStyles.Left) 221 this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 222 | System.Windows.Forms.AnchorStyles.Left) 223 223 | System.Windows.Forms.AnchorStyles.Right))); 224 224 this.tabControl1.Controls.Add(this.tabPage1); -
TabularUnified trunk/sources/HeuristicLab.Operators.Programmable/3.3/ProgrammableOperatorView.cs ¶
r5218 r5287 47 47 InitializeComponent(); 48 48 namespacesTreeView.ImageList = new ImageList(); 49 namespacesTreeView.ImageList.Images.Add(VS 2008ImageLibrary.Namespace);49 namespacesTreeView.ImageList.Images.Add(VSImageLibrary.Namespace); 50 50 assembliesTreeView.ImageList = new ImageList(); 51 assembliesTreeView.ImageList.Images.Add(VS 2008ImageLibrary.Assembly);52 assembliesTreeView.ImageList.Images.Add(VS 2008ImageLibrary.Module);51 assembliesTreeView.ImageList.Images.Add(VSImageLibrary.Assembly); 52 assembliesTreeView.ImageList.Images.Add(VSImageLibrary.Module); 53 53 } 54 54 … … 203 203 try { 204 204 ProgrammableOperator.Compile(); 205 } 206 catch (Exception ex) { 205 } catch (Exception ex) { 207 206 ErrorHandling.ShowErrorDialog(this, ex); 208 207 }
Note: See TracChangeset
for help on using the changeset viewer.