Free cookie consent management tool by TermsFeed Policy Generator

Changeset 366


Ignore:
Timestamp:
07/07/08 15:55:25 (16 years ago)
Author:
gkronber
Message:

fixed #196

Location:
trunk/sources/HeuristicLab.StructureIdentification
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.StructureIdentification/StructIdProblemInjectorView.Designer.cs

    r363 r366  
    4949      this.tabControl = new System.Windows.Forms.TabControl();
    5050      this.dataTabPage = new System.Windows.Forms.TabPage();
     51      this.datasetView = new HeuristicLab.DataAnalysis.DatasetView();
    5152      this.variableInfosTabPage = new System.Windows.Forms.TabPage();
    5253      this.operatorBaseVariableInfosView = new HeuristicLab.Core.OperatorBaseVariableInfosView();
    5354      this.tabPage1 = new System.Windows.Forms.TabPage();
    54       this.operatorBaseVariablesView = new HeuristicLab.Core.OperatorBaseVariablesView();
     55      this.variablesView = new HeuristicLab.Core.OperatorBaseVariablesView();
    5556      this.descriptionTabPage = new System.Windows.Forms.TabPage();
    5657      this.operatorBaseDescriptionView = new HeuristicLab.Core.OperatorBaseDescriptionView();
    57       this.datasetView = new HeuristicLab.DataAnalysis.DatasetView();
    5858      this.tabControl.SuspendLayout();
    5959      this.dataTabPage.SuspendLayout();
     
    105105      this.dataTabPage.UseVisualStyleBackColor = true;
    106106      //
     107      // datasetView
     108      //
     109      this.datasetView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     110                  | System.Windows.Forms.AnchorStyles.Left)
     111                  | System.Windows.Forms.AnchorStyles.Right)));
     112      this.datasetView.Caption = "Editor";
     113      this.datasetView.Dataset = null;
     114      this.datasetView.Filename = null;
     115      this.datasetView.Location = new System.Drawing.Point(6, 33);
     116      this.datasetView.Name = "datasetView";
     117      this.datasetView.Size = new System.Drawing.Size(487, 386);
     118      this.datasetView.TabIndex = 7;
     119      //
    107120      // variableInfosTabPage
    108121      //
     
    128141      // tabPage1
    129142      //
    130       this.tabPage1.Controls.Add(this.operatorBaseVariablesView);
     143      this.tabPage1.Controls.Add(this.variablesView);
    131144      this.tabPage1.Location = new System.Drawing.Point(4, 22);
    132145      this.tabPage1.Name = "tabPage1";
     
    137150      this.tabPage1.UseVisualStyleBackColor = true;
    138151      //
    139       // operatorBaseVariablesView
    140       //
    141       this.operatorBaseVariablesView.Caption = "Operator";
    142       this.operatorBaseVariablesView.Dock = System.Windows.Forms.DockStyle.Fill;
    143       this.operatorBaseVariablesView.Location = new System.Drawing.Point(3, 3);
    144       this.operatorBaseVariablesView.Name = "operatorBaseVariablesView";
    145       this.operatorBaseVariablesView.Operator = null;
    146       this.operatorBaseVariablesView.Size = new System.Drawing.Size(493, 419);
    147       this.operatorBaseVariablesView.TabIndex = 0;
     152      // variablesView
     153      //
     154      this.variablesView.Caption = "Operator";
     155      this.variablesView.Dock = System.Windows.Forms.DockStyle.Fill;
     156      this.variablesView.Location = new System.Drawing.Point(3, 3);
     157      this.variablesView.Name = "variablesView";
     158      this.variablesView.Operator = null;
     159      this.variablesView.Size = new System.Drawing.Size(493, 419);
     160      this.variablesView.TabIndex = 0;
    148161      //
    149162      // descriptionTabPage
     
    167180      this.operatorBaseDescriptionView.Size = new System.Drawing.Size(493, 419);
    168181      this.operatorBaseDescriptionView.TabIndex = 0;
    169       //
    170       // datasetView1
    171       //
    172       this.datasetView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
    173                   | System.Windows.Forms.AnchorStyles.Left)
    174                   | System.Windows.Forms.AnchorStyles.Right)));
    175       this.datasetView.Caption = "Editor";
    176       this.datasetView.Dataset = null;
    177       this.datasetView.Filename = null;
    178       this.datasetView.Location = new System.Drawing.Point(6, 33);
    179       this.datasetView.Name = "datasetView1";
    180       this.datasetView.Size = new System.Drawing.Size(487, 386);
    181       this.datasetView.TabIndex = 7;
    182182      //
    183183      // StructIdProblemInjectorView
     
    208208    private HeuristicLab.Core.OperatorBaseDescriptionView operatorBaseDescriptionView;
    209209    private System.Windows.Forms.TabPage tabPage1;
    210     private HeuristicLab.Core.OperatorBaseVariablesView operatorBaseVariablesView;
     210    private HeuristicLab.Core.OperatorBaseVariablesView variablesView;
    211211    private HeuristicLab.DataAnalysis.DatasetView datasetView;
    212212  }
  • trunk/sources/HeuristicLab.StructureIdentification/StructIdProblemInjectorView.cs

    r363 r366  
    3939    }
    4040
    41     public StructIdProblemInjectorView() {
     41    public StructIdProblemInjectorView() : base() {
    4242      InitializeComponent();
    4343    }
     
    4545      : this() {
    4646      StructIdProblemInjector = structIdProblemInjector;
     47      variablesView.Operator = structIdProblemInjector;
     48      variablesView.Update();
    4749    }
    4850
Note: See TracChangeset for help on using the changeset viewer.