Changeset 15771 for branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis.Views/Erc
- Timestamp:
- 02/13/18 16:56:35 (7 years ago)
- Location:
- branches/2895_PushGP_GenealogyAnalysis
- Files:
-
- 3 added
- 5 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis.Views/Erc/CheckedErcItemCollectionView.Designer.cs
r15756 r15771 1 namespace HeuristicLab.Problems.ProgramSynthesis .Base.Erc.Views{1 namespace HeuristicLab.Problems.ProgramSynthesis { 2 2 partial class CheckedErcItemCollectionView { 3 3 /// <summary> -
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis.Views/Erc/CheckedErcItemCollectionView.cs
r15756 r15771 1 namespace HeuristicLab.Problems.ProgramSynthesis .Base.Erc.Views{1 namespace HeuristicLab.Problems.ProgramSynthesis { 2 2 using HeuristicLab.Core.Views; 3 3 -
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis.Views/Erc/ErcOptionsView.Designer.cs
r15756 r15771 1 namespace HeuristicLab.Problems.ProgramSynthesis .Base.Erc.Views{1 namespace HeuristicLab.Problems.ProgramSynthesis { 2 2 partial class ErcOptionsView { 3 3 /// <summary> … … 26 26 this.PossibilityLabel = new System.Windows.Forms.Label(); 27 27 this.possibilityTextBox = new System.Windows.Forms.TextBox(); 28 this.ErcOptionListView = new HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Views.CheckedErcItemCollectionView();28 this.ErcOptionListView = new CheckedErcItemCollectionView(); 29 29 ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit(); 30 30 this.SuspendLayout(); -
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis.Views/Erc/ErcOptionsView.cs
r15756 r15771 1 namespace HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Views {2 using System.Linq;3 usingCore;4 usingCore.Views;5 usingMainForm;1 using System.Linq; 2 using HeuristicLab.Collections; 3 using HeuristicLab.Core; 4 using HeuristicLab.Core.Views; 5 using HeuristicLab.MainForm; 6 6 7 namespace HeuristicLab.Problems.ProgramSynthesis { 7 8 [View("ERC Options")] 8 9 [Content(typeof(ErcOptions), true)] … … 42 43 } 43 44 44 public new ErcOptions Content 45 { 45 public new ErcOptions Content { 46 46 get { return (ErcOptions)base.Content; } 47 set 48 { 47 set { 49 48 ClearOldContent(); 50 49 base.Content = value;
Note: See TracChangeset
for help on using the changeset viewer.