Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.GP/3.3/FunctionLibraryInjectorView.Designer.cs @ 2729

Last change on this file since 2729 was 2729, checked in by gkronber, 14 years ago

Fixed problems in persistence and cloning of functions and function libraries. Added test-functionality to editor for function libraries. Fixed bugs in editor for function libraries. #748 (FunctionLibraryView is empty)

File size: 5.4 KB
Line 
1namespace HeuristicLab.GP {
2  partial class FunctionLibraryInjectorView {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Component Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      this.loadButton = new System.Windows.Forms.Button();
27      this.saveButton = new System.Windows.Forms.Button();
28      this.functionLibraryEditor = new HeuristicLab.GP.FunctionLibraryEditor();
29      this.functionLibraryTabPage = new System.Windows.Forms.TabPage();
30      this.tabControl.SuspendLayout();
31      this.variableInfosTabPage.SuspendLayout();
32      this.variablesTabPage.SuspendLayout();
33      this.functionLibraryTabPage.SuspendLayout();
34      this.SuspendLayout();
35      //
36      // tabControl
37      //
38      this.tabControl.Controls.Add(this.functionLibraryTabPage);
39      this.tabControl.Size = new System.Drawing.Size(478, 437);
40      this.tabControl.Controls.SetChildIndex(this.variablesTabPage, 0);
41      this.tabControl.Controls.SetChildIndex(this.variableInfosTabPage, 0);
42      this.tabControl.Controls.SetChildIndex(this.functionLibraryTabPage, 0);
43      //
44      // variableInfosTabPage
45      //
46      this.variableInfosTabPage.Size = new System.Drawing.Size(470, 411);
47      //
48      // operatorBaseVariableInfosView
49      //
50      this.operatorBaseVariableInfosView.Size = new System.Drawing.Size(464, 405);
51      //
52      // loadButton
53      //
54      this.loadButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
55      this.loadButton.Location = new System.Drawing.Point(6, 382);
56      this.loadButton.Name = "loadButton";
57      this.loadButton.Size = new System.Drawing.Size(75, 23);
58      this.loadButton.TabIndex = 0;
59      this.loadButton.Text = "Import...";
60      this.loadButton.UseVisualStyleBackColor = true;
61      this.loadButton.Click += new System.EventHandler(this.loadButton_Click);
62      //
63      // saveButton
64      //
65      this.saveButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
66      this.saveButton.Location = new System.Drawing.Point(87, 382);
67      this.saveButton.Name = "saveButton";
68      this.saveButton.Size = new System.Drawing.Size(75, 23);
69      this.saveButton.TabIndex = 2;
70      this.saveButton.Text = "Export...";
71      this.saveButton.UseVisualStyleBackColor = true;
72      this.saveButton.Click += new System.EventHandler(this.saveButton_Click);
73      //
74      // functionLibraryEditor
75      //
76      this.functionLibraryEditor.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
77                  | System.Windows.Forms.AnchorStyles.Left)
78                  | System.Windows.Forms.AnchorStyles.Right)));
79      this.functionLibraryEditor.Caption = "Editor";
80      this.functionLibraryEditor.Filename = null;
81      this.functionLibraryEditor.FunctionLibrary = null;
82      this.functionLibraryEditor.Location = new System.Drawing.Point(6, 6);
83      this.functionLibraryEditor.Name = "functionLibraryEditor";
84      this.functionLibraryEditor.Size = new System.Drawing.Size(458, 370);
85      this.functionLibraryEditor.TabIndex = 3;
86      //
87      // functionLibraryTabPage
88      //
89      this.functionLibraryTabPage.Controls.Add(this.saveButton);
90      this.functionLibraryTabPage.Controls.Add(this.loadButton);
91      this.functionLibraryTabPage.Controls.Add(this.functionLibraryEditor);
92      this.functionLibraryTabPage.Location = new System.Drawing.Point(4, 22);
93      this.functionLibraryTabPage.Name = "functionLibraryTabPage";
94      this.functionLibraryTabPage.Padding = new System.Windows.Forms.Padding(3);
95      this.functionLibraryTabPage.Size = new System.Drawing.Size(470, 411);
96      this.functionLibraryTabPage.TabIndex = 4;
97      this.functionLibraryTabPage.Text = "Function library";
98      this.functionLibraryTabPage.UseVisualStyleBackColor = true;
99      //
100      // FunctionLibraryInjectorView
101      //
102      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
103      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
104      this.Name = "FunctionLibraryInjectorView";
105      this.Size = new System.Drawing.Size(478, 437);
106      this.tabControl.ResumeLayout(false);
107      this.variableInfosTabPage.ResumeLayout(false);
108      this.variablesTabPage.ResumeLayout(false);
109      this.functionLibraryTabPage.ResumeLayout(false);
110      this.ResumeLayout(false);
111
112    }
113
114    #endregion
115
116    private System.Windows.Forms.Button loadButton;
117    private System.Windows.Forms.Button saveButton;
118    private FunctionLibraryEditor functionLibraryEditor;
119    private System.Windows.Forms.TabPage functionLibraryTabPage;
120  }
121}
Note: See TracBrowser for help on using the repository browser.