Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.MetaOptimization/HeuristicLab.Problems.MetaOptimization.Views/3.3/ObjectSelectorDialog.Designer.cs @ 4516

Last change on this file since 4516 was 4516, checked in by cneumuel, 14 years ago

initial prototype for Meta Optimization Problem (#1215)

File size: 5.4 KB
Line 
1namespace HeuristicLab.Problems.MetaOptimization.Views {
2  partial class ObjectSelectorDialog<T> {
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.itemsListView = new System.Windows.Forms.ListView();
27      this.nameColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
28      this.descriptionColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
29      this.typeColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
30      this.cancelButton = new System.Windows.Forms.Button();
31      this.okButton = new System.Windows.Forms.Button();
32      this.SuspendLayout();
33      //
34      // itemsListView
35      //
36      this.itemsListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
37                  | System.Windows.Forms.AnchorStyles.Left)
38                  | System.Windows.Forms.AnchorStyles.Right)));
39      this.itemsListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
40            this.nameColumnHeader,
41            this.descriptionColumnHeader,
42            this.typeColumnHeader});
43      this.itemsListView.FullRowSelect = true;
44      this.itemsListView.HideSelection = false;
45      this.itemsListView.Location = new System.Drawing.Point(12, 12);
46      this.itemsListView.MultiSelect = false;
47      this.itemsListView.Name = "itemsListView";
48      this.itemsListView.Size = new System.Drawing.Size(765, 452);
49      this.itemsListView.TabIndex = 2;
50      this.itemsListView.UseCompatibleStateImageBehavior = false;
51      this.itemsListView.View = System.Windows.Forms.View.Details;
52      this.itemsListView.SelectedIndexChanged += new System.EventHandler(this.itemsListView_SelectedIndexChanged);
53      this.itemsListView.DoubleClick += new System.EventHandler(this.itemsListView_DoubleClick);
54      //
55      // nameColumnHeader
56      //
57      this.nameColumnHeader.Text = "Name";
58      this.nameColumnHeader.Width = 91;
59      //
60      // descriptionColumnHeader
61      //
62      this.descriptionColumnHeader.Text = "Description";
63      this.descriptionColumnHeader.Width = 187;
64      //
65      // typeColumnHeader
66      //
67      this.typeColumnHeader.Text = "Type";
68      this.typeColumnHeader.Width = 240;
69      //
70      // cancelButton
71      //
72      this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
73      this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
74      this.cancelButton.Location = new System.Drawing.Point(702, 470);
75      this.cancelButton.Name = "cancelButton";
76      this.cancelButton.Size = new System.Drawing.Size(75, 23);
77      this.cancelButton.TabIndex = 5;
78      this.cancelButton.Text = "&Cancel";
79      this.cancelButton.UseVisualStyleBackColor = true;
80      //
81      // okButton
82      //
83      this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
84      this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
85      this.okButton.Enabled = false;
86      this.okButton.Location = new System.Drawing.Point(621, 470);
87      this.okButton.Name = "okButton";
88      this.okButton.Size = new System.Drawing.Size(75, 23);
89      this.okButton.TabIndex = 4;
90      this.okButton.Text = "&OK";
91      this.okButton.UseVisualStyleBackColor = true;
92      this.okButton.Click += new System.EventHandler(this.okButton_Click);
93      //
94      // ObjectSelectorDialog
95      //
96      this.AcceptButton = this.okButton;
97      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
98      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
99      this.CancelButton = this.cancelButton;
100      this.ClientSize = new System.Drawing.Size(789, 505);
101      this.Controls.Add(this.cancelButton);
102      this.Controls.Add(this.okButton);
103      this.Controls.Add(this.itemsListView);
104      this.Name = "ObjectSelectorDialog";
105      this.Text = "ObjectSelectorDialog";
106      this.Load += new System.EventHandler(this.ObjectSelectorDialog_Load);
107      this.Shown += new System.EventHandler(this.ObjectSelectorDialog_Shown);
108      this.ResumeLayout(false);
109
110    }
111
112    #endregion
113
114    private System.Windows.Forms.ListView itemsListView;
115    private System.Windows.Forms.ColumnHeader nameColumnHeader;
116    private System.Windows.Forms.ColumnHeader descriptionColumnHeader;
117    private System.Windows.Forms.ColumnHeader typeColumnHeader;
118    private System.Windows.Forms.Button cancelButton;
119    private System.Windows.Forms.Button okButton;
120  }
121}
Note: See TracBrowser for help on using the repository browser.