Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive.Azure/HeuristicLab.Clients.Hive.CloudManager/3.3/Views/HostedServiceView.Designer.cs @ 7403

Last change on this file since 7403 was 7403, checked in by spimming, 12 years ago

#1680:

  • Replace specific views with ViewHost
  • DeploymentView initial commit
File size: 5.6 KB
Line 
1namespace HeuristicLab.Clients.Hive.CloudManager.Views {
2  partial class HostedServiceView {
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 Component 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.txtServiceName = new System.Windows.Forms.TextBox();
27      this.label1 = new System.Windows.Forms.Label();
28      this.label2 = new System.Windows.Forms.Label();
29      this.label3 = new System.Windows.Forms.Label();
30      this.txtUrl = new System.Windows.Forms.TextBox();
31      this.txtLocation = new System.Windows.Forms.TextBox();
32      this.label4 = new System.Windows.Forms.Label();
33      this.txtCoresUsed = new System.Windows.Forms.TextBox();
34      this.SuspendLayout();
35      //
36      // txtServiceName
37      //
38      this.txtServiceName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
39            | System.Windows.Forms.AnchorStyles.Right)));
40      this.txtServiceName.Location = new System.Drawing.Point(86, 3);
41      this.txtServiceName.Name = "txtServiceName";
42      this.txtServiceName.ReadOnly = true;
43      this.txtServiceName.Size = new System.Drawing.Size(348, 20);
44      this.txtServiceName.TabIndex = 0;
45      //
46      // label1
47      //
48      this.label1.AutoSize = true;
49      this.label1.Location = new System.Drawing.Point(3, 6);
50      this.label1.Name = "label1";
51      this.label1.Size = new System.Drawing.Size(77, 13);
52      this.label1.TabIndex = 1;
53      this.label1.Text = "Service Name:";
54      //
55      // label2
56      //
57      this.label2.AutoSize = true;
58      this.label2.Location = new System.Drawing.Point(3, 33);
59      this.label2.Name = "label2";
60      this.label2.Size = new System.Drawing.Size(23, 13);
61      this.label2.TabIndex = 2;
62      this.label2.Text = "Url:";
63      //
64      // label3
65      //
66      this.label3.AutoSize = true;
67      this.label3.Location = new System.Drawing.Point(3, 60);
68      this.label3.Name = "label3";
69      this.label3.Size = new System.Drawing.Size(51, 13);
70      this.label3.TabIndex = 3;
71      this.label3.Text = "Location:";
72      //
73      // txtUrl
74      //
75      this.txtUrl.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
76            | System.Windows.Forms.AnchorStyles.Right)));
77      this.txtUrl.Location = new System.Drawing.Point(86, 30);
78      this.txtUrl.Name = "txtUrl";
79      this.txtUrl.ReadOnly = true;
80      this.txtUrl.Size = new System.Drawing.Size(348, 20);
81      this.txtUrl.TabIndex = 4;
82      //
83      // txtLocation
84      //
85      this.txtLocation.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
86            | System.Windows.Forms.AnchorStyles.Right)));
87      this.txtLocation.Location = new System.Drawing.Point(86, 57);
88      this.txtLocation.Name = "txtLocation";
89      this.txtLocation.ReadOnly = true;
90      this.txtLocation.Size = new System.Drawing.Size(348, 20);
91      this.txtLocation.TabIndex = 5;
92      //
93      // label4
94      //
95      this.label4.AutoSize = true;
96      this.label4.Location = new System.Drawing.Point(3, 86);
97      this.label4.Name = "label4";
98      this.label4.Size = new System.Drawing.Size(63, 13);
99      this.label4.TabIndex = 6;
100      this.label4.Text = "Cores used:";
101      //
102      // txtCoresUsed
103      //
104      this.txtCoresUsed.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
105            | System.Windows.Forms.AnchorStyles.Right)));
106      this.txtCoresUsed.Location = new System.Drawing.Point(86, 83);
107      this.txtCoresUsed.Name = "txtCoresUsed";
108      this.txtCoresUsed.ReadOnly = true;
109      this.txtCoresUsed.Size = new System.Drawing.Size(348, 20);
110      this.txtCoresUsed.TabIndex = 7;
111      //
112      // HostedServiceView
113      //
114      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
115      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
116      this.Controls.Add(this.txtCoresUsed);
117      this.Controls.Add(this.label4);
118      this.Controls.Add(this.txtLocation);
119      this.Controls.Add(this.txtUrl);
120      this.Controls.Add(this.label3);
121      this.Controls.Add(this.label2);
122      this.Controls.Add(this.label1);
123      this.Controls.Add(this.txtServiceName);
124      this.Name = "HostedServiceView";
125      this.Size = new System.Drawing.Size(437, 113);
126      this.ResumeLayout(false);
127      this.PerformLayout();
128
129    }
130
131    #endregion
132
133    private System.Windows.Forms.TextBox txtServiceName;
134    private System.Windows.Forms.Label label1;
135    private System.Windows.Forms.Label label2;
136    private System.Windows.Forms.Label label3;
137    private System.Windows.Forms.TextBox txtUrl;
138    private System.Windows.Forms.TextBox txtLocation;
139    private System.Windows.Forms.Label label4;
140    private System.Windows.Forms.TextBox txtCoresUsed;
141  }
142}
Note: See TracBrowser for help on using the repository browser.