Free cookie consent management tool by TermsFeed Policy Generator

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

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

Simple GUI configuration for decomposers. (#506)

File size: 4.4 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() {
26      System.Windows.Forms.ListViewItem listViewItem1 = new System.Windows.Forms.ListViewItem("Bli");
27      System.Windows.Forms.ListViewItem listViewItem2 = new System.Windows.Forms.ListViewItem("Bla");
28      System.Windows.Forms.ListViewItem listViewItem3 = new System.Windows.Forms.ListViewItem("Blo");
29      this.decomposerList = new System.Windows.Forms.ListView();
30      this.DecomposersColumn = new System.Windows.Forms.ColumnHeader();
31      this.checkbox = new System.Windows.Forms.CheckedListBox();
32      this.SuspendLayout();
33      //
34      // decomposerList
35      //
36      this.decomposerList.Activation = System.Windows.Forms.ItemActivation.OneClick;
37      this.decomposerList.AllowDrop = true;
38      this.decomposerList.CheckBoxes = true;
39      this.decomposerList.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
40            this.DecomposersColumn});
41      this.decomposerList.FullRowSelect = true;
42      this.decomposerList.GridLines = true;
43      this.decomposerList.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
44      listViewItem1.Checked = true;
45      listViewItem1.StateImageIndex = 1;
46      listViewItem1.Tag = "";
47      listViewItem2.Checked = true;
48      listViewItem2.StateImageIndex = 1;
49      listViewItem3.Checked = true;
50      listViewItem3.StateImageIndex = 1;
51      this.decomposerList.Items.AddRange(new System.Windows.Forms.ListViewItem[] {
52            listViewItem1,
53            listViewItem2,
54            listViewItem3});
55      this.decomposerList.Location = new System.Drawing.Point(25, 12);
56      this.decomposerList.Name = "decomposerList";
57      this.decomposerList.ShowGroups = false;
58      this.decomposerList.Size = new System.Drawing.Size(194, 278);
59      this.decomposerList.TabIndex = 0;
60      this.decomposerList.UseCompatibleStateImageBehavior = false;
61      this.decomposerList.View = System.Windows.Forms.View.Details;
62      this.decomposerList.Resize += new System.EventHandler(this.decomposerList_Resize);
63      this.decomposerList.ItemChecked += new System.Windows.Forms.ItemCheckedEventHandler(this.decomposerList_ItemChecked);
64      this.decomposerList.DragDrop += new System.Windows.Forms.DragEventHandler(this.decomposerList_DragDrop);
65      this.decomposerList.DragEnter += new System.Windows.Forms.DragEventHandler(this.decomposerList_DragEnter);
66      this.decomposerList.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.decomposerList_ItemDrag);
67      //
68      // DecomposersColumn
69      //
70      this.DecomposersColumn.Text = "Decomposers";
71      this.DecomposersColumn.Width = 190;
72      //
73      // checkbox
74      //
75      this.checkbox.FormattingEnabled = true;
76      this.checkbox.Location = new System.Drawing.Point(314, 103);
77      this.checkbox.Name = "checkbox";
78      this.checkbox.Size = new System.Drawing.Size(180, 154);
79      this.checkbox.TabIndex = 1;
80      this.checkbox.ThreeDCheckBoxes = true;
81      //
82      // PersistenceConfigurationForm
83      //
84      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
85      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
86      this.ClientSize = new System.Drawing.Size(597, 580);
87      this.Controls.Add(this.checkbox);
88      this.Controls.Add(this.decomposerList);
89      this.Name = "PersistenceConfigurationForm";
90      this.Text = "PersistenceConfigurationForm";
91      this.ResumeLayout(false);
92
93    }
94
95    #endregion
96
97    private System.Windows.Forms.ListView decomposerList;
98    private System.Windows.Forms.ColumnHeader DecomposersColumn;
99    private System.Windows.Forms.CheckedListBox checkbox;
100  }
101}
Note: See TracBrowser for help on using the repository browser.