Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKB/HeuristicLab.OKB.AlgorithmHost/SelectItemDialog.Designer.cs @ 4537

Last change on this file since 4537 was 4311, checked in by swagner, 14 years ago

Integrated OKB clients for HL 3.3 (#1166)

File size: 5.1 KB
Line 
1namespace HeuristicLab.OKB.AlgorithmHost {
2  partial class SelectItemDialog {
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.itemsListView = new System.Windows.Forms.ListView();
29      this.nameColumnHeader = new System.Windows.Forms.ColumnHeader();
30      this.descriptionColumnHeader = new System.Windows.Forms.ColumnHeader();
31      this.SuspendLayout();
32      //
33      // okButton
34      //
35      this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
36      this.okButton.Location = new System.Drawing.Point(456, 409);
37      this.okButton.Name = "okButton";
38      this.okButton.Size = new System.Drawing.Size(75, 23);
39      this.okButton.TabIndex = 2;
40      this.okButton.Text = "&OK";
41      this.okButton.UseVisualStyleBackColor = true;
42      this.okButton.Click += new System.EventHandler(this.okButton_Click);
43      //
44      // cancelButton
45      //
46      this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
47      this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
48      this.cancelButton.Location = new System.Drawing.Point(537, 409);
49      this.cancelButton.Name = "cancelButton";
50      this.cancelButton.Size = new System.Drawing.Size(75, 23);
51      this.cancelButton.TabIndex = 3;
52      this.cancelButton.Text = "&Cancel";
53      this.cancelButton.UseVisualStyleBackColor = true;
54      this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
55      //
56      // itemsListView
57      //
58      this.itemsListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
59                  | System.Windows.Forms.AnchorStyles.Left)
60                  | System.Windows.Forms.AnchorStyles.Right)));
61      this.itemsListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
62            this.nameColumnHeader,
63            this.descriptionColumnHeader});
64      this.itemsListView.FullRowSelect = true;
65      this.itemsListView.HideSelection = false;
66      this.itemsListView.Location = new System.Drawing.Point(12, 12);
67      this.itemsListView.MultiSelect = false;
68      this.itemsListView.Name = "itemsListView";
69      this.itemsListView.Size = new System.Drawing.Size(600, 391);
70      this.itemsListView.TabIndex = 1;
71      this.itemsListView.UseCompatibleStateImageBehavior = false;
72      this.itemsListView.View = System.Windows.Forms.View.Details;
73      this.itemsListView.SelectedIndexChanged += new System.EventHandler(this.itemsListView_SelectedIndexChanged);
74      this.itemsListView.DoubleClick += new System.EventHandler(this.itemsListView_DoubleClick);
75      //
76      // nameColumnHeader
77      //
78      this.nameColumnHeader.Text = "Name";
79      this.nameColumnHeader.Width = 185;
80      //
81      // descriptionColumnHeader
82      //
83      this.descriptionColumnHeader.Text = "Description";
84      this.descriptionColumnHeader.Width = 411;
85      //
86      // SelectItemDialog
87      //
88      this.AcceptButton = this.okButton;
89      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
90      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
91      this.CancelButton = this.cancelButton;
92      this.ClientSize = new System.Drawing.Size(624, 444);
93      this.Controls.Add(this.itemsListView);
94      this.Controls.Add(this.cancelButton);
95      this.Controls.Add(this.okButton);
96      this.MaximizeBox = false;
97      this.MinimizeBox = false;
98      this.Name = "SelectItemDialog";
99      this.ShowIcon = false;
100      this.ShowInTaskbar = false;
101      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
102      this.Text = "Select Item";
103      this.TopMost = true;
104      this.Shown += new System.EventHandler(this.SelectItemDialog_Shown);
105      this.ResumeLayout(false);
106
107    }
108
109    #endregion
110
111    private System.Windows.Forms.Button okButton;
112    private System.Windows.Forms.Button cancelButton;
113    private System.Windows.Forms.ListView itemsListView;
114    private System.Windows.Forms.ColumnHeader nameColumnHeader;
115    private System.Windows.Forms.ColumnHeader descriptionColumnHeader;
116  }
117}
Note: See TracBrowser for help on using the repository browser.