Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.SolutionCaching.Views/3.3/RunCollectionModifierTasksConfigurator.Designer.cs @ 10113

Last change on this file since 10113 was 10113, checked in by ascheibe, 11 years ago

#1886 added basic dialog for configuring a RunCollectionModifierTask

File size: 4.0 KB
Line 
1namespace HeuristicLab.Analysis.SolutionCaching.Views {
2  partial class RunCollectionModifierTasksConfigurator {
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.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
29      this.SuspendLayout();
30      //
31      // okButton
32      //
33      this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
34      this.okButton.Location = new System.Drawing.Point(502, 325);
35      this.okButton.Name = "okButton";
36      this.okButton.Size = new System.Drawing.Size(75, 23);
37      this.okButton.TabIndex = 0;
38      this.okButton.Text = "OK";
39      this.okButton.UseVisualStyleBackColor = true;
40      this.okButton.Click += new System.EventHandler(this.okButton_Click);
41      //
42      // cancelButton
43      //
44      this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
45      this.cancelButton.Location = new System.Drawing.Point(583, 325);
46      this.cancelButton.Name = "cancelButton";
47      this.cancelButton.Size = new System.Drawing.Size(75, 23);
48      this.cancelButton.TabIndex = 1;
49      this.cancelButton.Text = "Cancel";
50      this.cancelButton.UseVisualStyleBackColor = true;
51      this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
52      //
53      // viewHost
54      //
55      this.viewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
56            | System.Windows.Forms.AnchorStyles.Left)
57            | System.Windows.Forms.AnchorStyles.Right)));
58      this.viewHost.Caption = "View";
59      this.viewHost.Content = null;
60      this.viewHost.Enabled = false;
61      this.viewHost.Location = new System.Drawing.Point(12, 12);
62      this.viewHost.Name = "viewHost";
63      this.viewHost.ReadOnly = false;
64      this.viewHost.Size = new System.Drawing.Size(646, 307);
65      this.viewHost.TabIndex = 2;
66      this.viewHost.ViewsLabelVisible = true;
67      this.viewHost.ViewType = null;
68      //
69      // RunCollectionModifierTasksConfigurator
70      //
71      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
72      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
73      this.ClientSize = new System.Drawing.Size(670, 360);
74      this.Controls.Add(this.viewHost);
75      this.Controls.Add(this.cancelButton);
76      this.Controls.Add(this.okButton);
77      this.MaximizeBox = false;
78      this.MinimizeBox = false;
79      this.Name = "RunCollectionModifierTasksConfigurator";
80      this.ShowIcon = false;
81      this.ShowInTaskbar = false;
82      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
83      this.Text = "Configure RunCollectionModifiers for Hive";
84      this.Load += new System.EventHandler(this.RunCollectionModifierTasksConfigurator_Load);
85      this.ResumeLayout(false);
86
87    }
88
89    #endregion
90
91    private System.Windows.Forms.Button okButton;
92    private System.Windows.Forms.Button cancelButton;
93    private MainForm.WindowsForms.ViewHost viewHost;
94  }
95}
Note: See TracBrowser for help on using the repository browser.