Free cookie consent management tool by TermsFeed Policy Generator

source: branches/New Persistence Exploration/Persistence/HeuristicLab.Persistence.GUI/PersistenceConfigurationForm.Designer.cs @ 1382

Last change on this file since 1382 was 1382, checked in by epitzer, 15 years ago

Almost complete GUI for persistence configuration. (#506)

File size: 9.9 KB
RevLine 
[1373]1namespace HeuristicLab.Persistence.GUI {
2  partial class PersistenceConfigurationForm {
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() {
[1382]26      System.Windows.Forms.TabPage nullFormatterConfig;
[1373]27      System.Windows.Forms.ListViewItem listViewItem1 = new System.Windows.Forms.ListViewItem("Bli");
28      System.Windows.Forms.ListViewItem listViewItem2 = new System.Windows.Forms.ListViewItem("Bla");
29      System.Windows.Forms.ListViewItem listViewItem3 = new System.Windows.Forms.ListViewItem("Blo");
[1382]30      this.dataGridView1 = new System.Windows.Forms.DataGridView();
31      this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
32      this.Column2 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
33      this.Column3 = new System.Windows.Forms.DataGridViewComboBoxColumn();
[1373]34      this.decomposerList = new System.Windows.Forms.ListView();
35      this.DecomposersColumn = new System.Windows.Forms.ColumnHeader();
[1382]36      this.splitContainer1 = new System.Windows.Forms.SplitContainer();
37      this.splitContainer2 = new System.Windows.Forms.SplitContainer();
[1373]38      this.checkbox = new System.Windows.Forms.CheckedListBox();
[1382]39      this.formatterTabs = new System.Windows.Forms.TabControl();
40      nullFormatterConfig = new System.Windows.Forms.TabPage();
41      nullFormatterConfig.SuspendLayout();
42      ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
43      this.splitContainer1.Panel1.SuspendLayout();
44      this.splitContainer1.Panel2.SuspendLayout();
45      this.splitContainer1.SuspendLayout();
46      this.splitContainer2.Panel1.SuspendLayout();
47      this.splitContainer2.Panel2.SuspendLayout();
48      this.splitContainer2.SuspendLayout();
49      this.formatterTabs.SuspendLayout();
[1373]50      this.SuspendLayout();
51      //
[1382]52      // nullFormatterConfig
53      //
54      nullFormatterConfig.Controls.Add(this.dataGridView1);
55      nullFormatterConfig.Location = new System.Drawing.Point(4, 22);
56      nullFormatterConfig.Name = "nullFormatterConfig";
57      nullFormatterConfig.Size = new System.Drawing.Size(386, 554);
58      nullFormatterConfig.TabIndex = 0;
59      nullFormatterConfig.Text = "EmptyFormatterConfig";
60      nullFormatterConfig.UseVisualStyleBackColor = true;
61      //
62      // dataGridView1
63      //
64      this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
65      this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
66            this.Column1,
67            this.Column2,
68            this.Column3});
69      this.dataGridView1.Dock = System.Windows.Forms.DockStyle.Fill;
70      this.dataGridView1.Location = new System.Drawing.Point(0, 0);
71      this.dataGridView1.Name = "dataGridView1";
72      this.dataGridView1.Size = new System.Drawing.Size(386, 554);
73      this.dataGridView1.TabIndex = 0;
74      //
75      // Column1
76      //
77      this.Column1.HeaderText = "Column1";
78      this.Column1.Name = "Column1";
79      //
80      // Column2
81      //
82      this.Column2.HeaderText = "Column2";
83      this.Column2.Name = "Column2";
84      //
85      // Column3
86      //
87      this.Column3.DisplayStyle = System.Windows.Forms.DataGridViewComboBoxDisplayStyle.ComboBox;
88      this.Column3.HeaderText = "Column3";
89      this.Column3.Name = "Column3";
90      //
[1373]91      // decomposerList
92      //
93      this.decomposerList.Activation = System.Windows.Forms.ItemActivation.OneClick;
94      this.decomposerList.AllowDrop = true;
95      this.decomposerList.CheckBoxes = true;
96      this.decomposerList.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
97            this.DecomposersColumn});
[1382]98      this.decomposerList.Dock = System.Windows.Forms.DockStyle.Fill;
[1373]99      this.decomposerList.FullRowSelect = true;
100      this.decomposerList.GridLines = true;
101      this.decomposerList.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
102      listViewItem1.Checked = true;
103      listViewItem1.StateImageIndex = 1;
104      listViewItem1.Tag = "";
105      listViewItem2.Checked = true;
106      listViewItem2.StateImageIndex = 1;
107      listViewItem3.Checked = true;
108      listViewItem3.StateImageIndex = 1;
109      this.decomposerList.Items.AddRange(new System.Windows.Forms.ListViewItem[] {
110            listViewItem1,
111            listViewItem2,
112            listViewItem3});
[1382]113      this.decomposerList.Location = new System.Drawing.Point(0, 0);
[1373]114      this.decomposerList.Name = "decomposerList";
115      this.decomposerList.ShowGroups = false;
[1382]116      this.decomposerList.Size = new System.Drawing.Size(199, 290);
[1373]117      this.decomposerList.TabIndex = 0;
118      this.decomposerList.UseCompatibleStateImageBehavior = false;
119      this.decomposerList.View = System.Windows.Forms.View.Details;
120      this.decomposerList.Resize += new System.EventHandler(this.decomposerList_Resize);
121      this.decomposerList.ItemChecked += new System.Windows.Forms.ItemCheckedEventHandler(this.decomposerList_ItemChecked);
122      this.decomposerList.DragDrop += new System.Windows.Forms.DragEventHandler(this.decomposerList_DragDrop);
123      this.decomposerList.DragEnter += new System.Windows.Forms.DragEventHandler(this.decomposerList_DragEnter);
124      this.decomposerList.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.decomposerList_ItemDrag);
125      //
126      // DecomposersColumn
127      //
128      this.DecomposersColumn.Text = "Decomposers";
129      this.DecomposersColumn.Width = 190;
130      //
[1382]131      // splitContainer1
132      //
133      this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
134      this.splitContainer1.Location = new System.Drawing.Point(0, 0);
135      this.splitContainer1.Name = "splitContainer1";
136      //
137      // splitContainer1.Panel1
138      //
139      this.splitContainer1.Panel1.Controls.Add(this.splitContainer2);
140      //
141      // splitContainer1.Panel2
142      //
143      this.splitContainer1.Panel2.Controls.Add(this.formatterTabs);
144      this.splitContainer1.Size = new System.Drawing.Size(597, 580);
145      this.splitContainer1.SplitterDistance = 199;
146      this.splitContainer1.TabIndex = 2;
147      //
148      // splitContainer2
149      //
150      this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
151      this.splitContainer2.Location = new System.Drawing.Point(0, 0);
152      this.splitContainer2.Name = "splitContainer2";
153      this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
154      //
155      // splitContainer2.Panel1
156      //
157      this.splitContainer2.Panel1.Controls.Add(this.decomposerList);
158      //
159      // splitContainer2.Panel2
160      //
161      this.splitContainer2.Panel2.Controls.Add(this.checkbox);
162      this.splitContainer2.Size = new System.Drawing.Size(199, 580);
163      this.splitContainer2.SplitterDistance = 290;
164      this.splitContainer2.TabIndex = 1;
165      //
[1373]166      // checkbox
167      //
[1382]168      this.checkbox.Dock = System.Windows.Forms.DockStyle.Fill;
[1373]169      this.checkbox.FormattingEnabled = true;
[1382]170      this.checkbox.Location = new System.Drawing.Point(0, 0);
[1373]171      this.checkbox.Name = "checkbox";
[1382]172      this.checkbox.Size = new System.Drawing.Size(199, 274);
[1373]173      this.checkbox.TabIndex = 1;
174      this.checkbox.ThreeDCheckBoxes = true;
175      //
[1382]176      // formatterTabs
177      //
178      this.formatterTabs.Controls.Add(nullFormatterConfig);
179      this.formatterTabs.Dock = System.Windows.Forms.DockStyle.Fill;
180      this.formatterTabs.Location = new System.Drawing.Point(0, 0);
181      this.formatterTabs.Name = "formatterTabs";
182      this.formatterTabs.SelectedIndex = 0;
183      this.formatterTabs.Size = new System.Drawing.Size(394, 580);
184      this.formatterTabs.TabIndex = 0;
185      //
[1373]186      // PersistenceConfigurationForm
187      //
188      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
189      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
190      this.ClientSize = new System.Drawing.Size(597, 580);
[1382]191      this.Controls.Add(this.splitContainer1);
[1373]192      this.Name = "PersistenceConfigurationForm";
193      this.Text = "PersistenceConfigurationForm";
[1382]194      nullFormatterConfig.ResumeLayout(false);
195      ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
196      this.splitContainer1.Panel1.ResumeLayout(false);
197      this.splitContainer1.Panel2.ResumeLayout(false);
198      this.splitContainer1.ResumeLayout(false);
199      this.splitContainer2.Panel1.ResumeLayout(false);
200      this.splitContainer2.Panel2.ResumeLayout(false);
201      this.splitContainer2.ResumeLayout(false);
202      this.formatterTabs.ResumeLayout(false);
[1373]203      this.ResumeLayout(false);
204
205    }
206
207    #endregion
208
209    private System.Windows.Forms.ListView decomposerList;
210    private System.Windows.Forms.ColumnHeader DecomposersColumn;
[1382]211    private System.Windows.Forms.SplitContainer splitContainer1;
[1373]212    private System.Windows.Forms.CheckedListBox checkbox;
[1382]213    private System.Windows.Forms.SplitContainer splitContainer2;
214    private System.Windows.Forms.TabControl formatterTabs;
215    private System.Windows.Forms.DataGridView dataGridView1;
216    private System.Windows.Forms.DataGridViewTextBoxColumn Column1;
217    private System.Windows.Forms.DataGridViewCheckBoxColumn Column2;
218    private System.Windows.Forms.DataGridViewComboBoxColumn Column3;
[1373]219  }
220}
Note: See TracBrowser for help on using the repository browser.