Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Data/EditKeyValueDialog.designer.cs @ 1343

Last change on this file since 1343 was 187, checked in by mkofler, 16 years ago

Added ItemDictionary and related classes (View, KeyValueEventArgs, EditKeyValueDialog) to the Core and Data projects as per Andreas' request.

File size: 5.7 KB
Line 
1namespace HeuristicLab.Data {
2  partial class EditKeyValueDialog {
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 Windows Form 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.okButton = new System.Windows.Forms.Button();
27      this.cancelButton = new System.Windows.Forms.Button();
28      this.keyPanel = new System.Windows.Forms.Panel();
29      this.valuePanel = new System.Windows.Forms.Panel();
30      this.groupBox1 = new System.Windows.Forms.GroupBox();
31      this.groupBox2 = new System.Windows.Forms.GroupBox();
32      this.groupBox1.SuspendLayout();
33      this.SuspendLayout();
34      //
35      // okButton
36      //
37      this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
38      this.okButton.Location = new System.Drawing.Point(135, 198);
39      this.okButton.Name = "okButton";
40      this.okButton.Size = new System.Drawing.Size(75, 23);
41      this.okButton.TabIndex = 0;
42      this.okButton.Text = "&OK";
43      this.okButton.UseVisualStyleBackColor = true;
44      this.okButton.Click += new System.EventHandler(this.okButton_Click);
45      //
46      // cancelButton
47      //
48      this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
49      this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
50      this.cancelButton.Location = new System.Drawing.Point(216, 198);
51      this.cancelButton.Name = "cancelButton";
52      this.cancelButton.Size = new System.Drawing.Size(75, 23);
53      this.cancelButton.TabIndex = 1;
54      this.cancelButton.Text = "&Cancel";
55      this.cancelButton.UseVisualStyleBackColor = true;
56      //
57      // keyPanel
58      //
59      this.keyPanel.Anchor = ((System.Windows.Forms.AnchorStyles) (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
60                  | System.Windows.Forms.AnchorStyles.Right)));
61      this.keyPanel.AutoScroll = true;
62      this.keyPanel.Location = new System.Drawing.Point(15, 31);
63      this.keyPanel.Name = "keyPanel";
64      this.keyPanel.Size = new System.Drawing.Size(276, 39);
65      this.keyPanel.TabIndex = 2;
66      //
67      // valuePanel
68      //
69      this.valuePanel.Anchor = ((System.Windows.Forms.AnchorStyles) ((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
70                  | System.Windows.Forms.AnchorStyles.Left)
71                  | System.Windows.Forms.AnchorStyles.Right)));
72      this.valuePanel.AutoScroll = true;
73      this.valuePanel.Location = new System.Drawing.Point(9, 19);
74      this.valuePanel.Name = "valuePanel";
75      this.valuePanel.Size = new System.Drawing.Size(270, 80);
76      this.valuePanel.TabIndex = 3;
77      //
78      // groupBox1
79      //
80      this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles) ((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
81                  | System.Windows.Forms.AnchorStyles.Left)
82                  | System.Windows.Forms.AnchorStyles.Right)));
83      this.groupBox1.Controls.Add(this.valuePanel);
84      this.groupBox1.Location = new System.Drawing.Point(12, 82);
85      this.groupBox1.Name = "groupBox1";
86      this.groupBox1.Size = new System.Drawing.Size(283, 109);
87      this.groupBox1.TabIndex = 4;
88      this.groupBox1.TabStop = false;
89      this.groupBox1.Text = "Value: ";
90      //
91      // groupBox2
92      //
93      this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles) ((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
94                  | System.Windows.Forms.AnchorStyles.Left)
95                  | System.Windows.Forms.AnchorStyles.Right)));
96      this.groupBox2.Location = new System.Drawing.Point(12, 12);
97      this.groupBox2.Name = "groupBox2";
98      this.groupBox2.Size = new System.Drawing.Size(283, 64);
99      this.groupBox2.TabIndex = 5;
100      this.groupBox2.TabStop = false;
101      this.groupBox2.Text = "Key:";
102      //
103      // EditKeyValueDialog
104      //
105      this.AcceptButton = this.okButton;
106      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
107      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
108      this.CancelButton = this.cancelButton;
109      this.ClientSize = new System.Drawing.Size(301, 233);
110      this.Controls.Add(this.groupBox1);
111      this.Controls.Add(this.keyPanel);
112      this.Controls.Add(this.cancelButton);
113      this.Controls.Add(this.okButton);
114      this.Controls.Add(this.groupBox2);
115      this.Name = "EditKeyValueDialog";
116      this.Text = "KeyValuePair";
117      this.groupBox1.ResumeLayout(false);
118      this.ResumeLayout(false);
119
120    }
121
122    #endregion
123
124    private System.Windows.Forms.Button okButton;
125    private System.Windows.Forms.Button cancelButton;
126    private System.Windows.Forms.Panel keyPanel;
127    private System.Windows.Forms.Panel valuePanel;
128    private System.Windows.Forms.GroupBox groupBox1;
129    private System.Windows.Forms.GroupBox groupBox2;
130  }
131}
Note: See TracBrowser for help on using the repository browser.