Free cookie consent management tool by TermsFeed Policy Generator

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

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

Created a specialized view for function library injectors which allows full configuration of the function library. #748 (FunctionLibraryView is empty)

File size: 5.8 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      // variablesTabPage
49      //
50      this.variablesTabPage.Size = new System.Drawing.Size(470, 411);
51      //
52      // constrainedItemBaseView
53      //
54      this.constrainedItemBaseView.Size = new System.Drawing.Size(464, 405);
55      //
56      // operatorBaseVariableInfosView
57      //
58      this.operatorBaseVariableInfosView.Size = new System.Drawing.Size(464, 405);
59      //
60      // operatorBaseVariablesView
61      //
62      this.operatorBaseVariablesView.Size = new System.Drawing.Size(464, 405);
63      //
64      // loadButton
65      //
66      this.loadButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
67      this.loadButton.Location = new System.Drawing.Point(6, 382);
68      this.loadButton.Name = "loadButton";
69      this.loadButton.Size = new System.Drawing.Size(75, 23);
70      this.loadButton.TabIndex = 0;
71      this.loadButton.Text = "Load...";
72      this.loadButton.UseVisualStyleBackColor = true;
73      this.loadButton.Click += new System.EventHandler(this.loadButton_Click);
74      //
75      // saveButton
76      //
77      this.saveButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
78      this.saveButton.Location = new System.Drawing.Point(87, 382);
79      this.saveButton.Name = "saveButton";
80      this.saveButton.Size = new System.Drawing.Size(75, 23);
81      this.saveButton.TabIndex = 2;
82      this.saveButton.Text = "Save...";
83      this.saveButton.UseVisualStyleBackColor = true;
84      this.saveButton.Click += new System.EventHandler(this.saveButton_Click);
85      //
86      // functionLibraryEditor
87      //
88      this.functionLibraryEditor.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
89                  | System.Windows.Forms.AnchorStyles.Left)
90                  | System.Windows.Forms.AnchorStyles.Right)));
91      this.functionLibraryEditor.Caption = "Editor";
92      this.functionLibraryEditor.Filename = null;
93      this.functionLibraryEditor.FunctionLibrary = null;
94      this.functionLibraryEditor.Location = new System.Drawing.Point(6, 6);
95      this.functionLibraryEditor.Name = "functionLibraryEditor";
96      this.functionLibraryEditor.Size = new System.Drawing.Size(458, 370);
97      this.functionLibraryEditor.TabIndex = 3;
98      //
99      // functionLibraryTabPage
100      //
101      this.functionLibraryTabPage.Controls.Add(this.saveButton);
102      this.functionLibraryTabPage.Controls.Add(this.loadButton);
103      this.functionLibraryTabPage.Controls.Add(this.functionLibraryEditor);
104      this.functionLibraryTabPage.Location = new System.Drawing.Point(4, 22);
105      this.functionLibraryTabPage.Name = "functionLibraryTabPage";
106      this.functionLibraryTabPage.Padding = new System.Windows.Forms.Padding(3);
107      this.functionLibraryTabPage.Size = new System.Drawing.Size(470, 411);
108      this.functionLibraryTabPage.TabIndex = 4;
109      this.functionLibraryTabPage.Text = "Function library";
110      this.functionLibraryTabPage.UseVisualStyleBackColor = true;
111      //
112      // FunctionLibraryInjectorView
113      //
114      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
115      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
116      this.Name = "FunctionLibraryInjectorView";
117      this.Size = new System.Drawing.Size(478, 437);
118      this.tabControl.ResumeLayout(false);
119      this.variableInfosTabPage.ResumeLayout(false);
120      this.variablesTabPage.ResumeLayout(false);
121      this.functionLibraryTabPage.ResumeLayout(false);
122      this.ResumeLayout(false);
123
124    }
125
126    #endregion
127
128    private System.Windows.Forms.Button loadButton;
129    private System.Windows.Forms.Button saveButton;
130    private FunctionLibraryEditor functionLibraryEditor;
131    private System.Windows.Forms.TabPage functionLibraryTabPage;
132  }
133}
Note: See TracBrowser for help on using the repository browser.