Free cookie consent management tool by TermsFeed Policy Generator

source: branches/GP-MoveOperators/HeuristicLab.Clients.Hive.JobManager/3.3/Views/HiveResourceSelectorDialog.Designer.cs @ 8085

Last change on this file since 8085 was 8085, checked in by gkronber, 12 years ago

#1847: merged trunk changes r7800:HEAD into gp move operators branch

File size: 5.2 KB
Line 
1namespace HeuristicLab.Clients.Hive.JobManager.Views {
2  partial class HiveResourceSelectorDialog {
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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(HiveResourceSelectorDialog));
27      this.okButton = new System.Windows.Forms.Button();
28      this.cancelButton = new System.Windows.Forms.Button();
29      this.refreshButton = new System.Windows.Forms.Button();
30      this.hiveResourceSelector = new HeuristicLab.Clients.Hive.JobManager.Views.HiveResourceSelector();
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.DialogResult = System.Windows.Forms.DialogResult.OK;
37      this.okButton.Location = new System.Drawing.Point(405, 609);
38      this.okButton.Name = "okButton";
39      this.okButton.Size = new System.Drawing.Size(75, 23);
40      this.okButton.TabIndex = 1;
41      this.okButton.Text = "&OK";
42      this.okButton.UseVisualStyleBackColor = true;
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(486, 609);
49      this.cancelButton.Name = "cancelButton";
50      this.cancelButton.Size = new System.Drawing.Size(75, 23);
51      this.cancelButton.TabIndex = 2;
52      this.cancelButton.Text = "&Cancel";
53      this.cancelButton.UseVisualStyleBackColor = true;
54      //
55      // refreshButton
56      //
57      this.refreshButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
58      this.refreshButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Refresh;
59      this.refreshButton.Location = new System.Drawing.Point(12, 608);
60      this.refreshButton.Name = "refreshButton";
61      this.refreshButton.Size = new System.Drawing.Size(24, 24);
62      this.refreshButton.TabIndex = 3;
63      this.refreshButton.UseVisualStyleBackColor = true;
64      this.refreshButton.Click += new System.EventHandler(this.refreshButton_Click);
65      //
66      // hiveResourceSelector
67      //
68      this.hiveResourceSelector.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
69            | System.Windows.Forms.AnchorStyles.Left)
70            | System.Windows.Forms.AnchorStyles.Right)));
71      this.hiveResourceSelector.Caption = "View";
72      this.hiveResourceSelector.Content = null;
73      this.hiveResourceSelector.Location = new System.Drawing.Point(12, 12);
74      this.hiveResourceSelector.Name = "hiveResourceSelector";
75      this.hiveResourceSelector.ProgressView = null;
76      this.hiveResourceSelector.ReadOnly = false;
77      this.hiveResourceSelector.Size = new System.Drawing.Size(549, 591);
78      this.hiveResourceSelector.TabIndex = 0;
79      //
80      // HiveResourceSelectorDialog
81      //
82      this.AcceptButton = this.okButton;
83      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
84      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
85      this.CancelButton = this.cancelButton;
86      this.ClientSize = new System.Drawing.Size(573, 644);
87      this.Controls.Add(this.refreshButton);
88      this.Controls.Add(this.hiveResourceSelector);
89      this.Controls.Add(this.cancelButton);
90      this.Controls.Add(this.okButton);
91      this.MaximizeBox = false;
92      this.MinimizeBox = false;
93      this.Name = "HiveResourceSelectorDialog";
94      this.ShowIcon = false;
95      this.ShowInTaskbar = false;
96      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
97      this.Text = "Select Resources";
98      this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.HiveResourceSelectorDialog_FormClosing);
99      this.Load += new System.EventHandler(this.HiveResourceSelectorDialog_Load);
100      this.ResumeLayout(false);
101
102    }
103
104    #endregion
105
106    protected System.Windows.Forms.Button okButton;
107    protected System.Windows.Forms.Button cancelButton;
108    protected HiveResourceSelector hiveResourceSelector;
109    protected System.Windows.Forms.Button refreshButton;
110  }
111}
Note: See TracBrowser for help on using the repository browser.