Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive.Azure/HeuristicLab.Clients.Hive.CloudManager/3.3/Views/AddAzureServiceDialog.Designer.cs @ 7578

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

#1680: tab order changed

File size: 25.6 KB
RevLine 
[7339]1namespace HeuristicLab.Clients.Hive.CloudManager.Views {
2  partial class AddAzureServiceDialog {
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() {
[7424]26      this.components = new System.ComponentModel.Container();
[7547]27      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AddAzureServiceDialog));
[7339]28      this.label1 = new System.Windows.Forms.Label();
29      this.cmbChooseSubscription = new System.Windows.Forms.ComboBox();
30      this.label2 = new System.Windows.Forms.Label();
31      this.cmbChooseHostedService = new System.Windows.Forms.ComboBox();
32      this.gbNewHostedService = new System.Windows.Forms.GroupBox();
33      this.cmbAffinityGroup = new System.Windows.Forms.ComboBox();
[7354]34      this.cmbLocation = new System.Windows.Forms.ComboBox();
[7339]35      this.rbAffinitGroup = new System.Windows.Forms.RadioButton();
36      this.rbRegion = new System.Windows.Forms.RadioButton();
37      this.label6 = new System.Windows.Forms.Label();
38      this.label5 = new System.Windows.Forms.Label();
[7354]39      this.tbServiceName = new System.Windows.Forms.TextBox();
[7339]40      this.label4 = new System.Windows.Forms.Label();
[7354]41      this.tbLabel = new System.Windows.Forms.TextBox();
[7339]42      this.label3 = new System.Windows.Forms.Label();
43      this.cbNewHostedService = new System.Windows.Forms.CheckBox();
[7354]44      this.rbDeployToProduction = new System.Windows.Forms.RadioButton();
[7339]45      this.rbDeployToStaging = new System.Windows.Forms.RadioButton();
46      this.btnAddCertificate = new System.Windows.Forms.Button();
47      this.label9 = new System.Windows.Forms.Label();
48      this.tbInstanceCount = new System.Windows.Forms.TextBox();
49      this.lblCores = new System.Windows.Forms.Label();
50      this.label10 = new System.Windows.Forms.Label();
51      this.progressBar = new System.Windows.Forms.ProgressBar();
52      this.btnOk = new System.Windows.Forms.Button();
53      this.btnCancel = new System.Windows.Forms.Button();
[7362]54      this.lblCertificateFile = new System.Windows.Forms.Label();
[7424]55      this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
[7547]56      this.gbStorageService = new System.Windows.Forms.GroupBox();
[7551]57      this.cbCreateBlobIfNotExists = new System.Windows.Forms.CheckBox();
58      this.tbBlobContainer = new System.Windows.Forms.TextBox();
59      this.label11 = new System.Windows.Forms.Label();
60      this.cmbStorageServices = new System.Windows.Forms.ComboBox();
[7547]61      this.label8 = new System.Windows.Forms.Label();
62      this.rbVMSizeMedium = new System.Windows.Forms.RadioButton();
63      this.rbVMSizeSmall = new System.Windows.Forms.RadioButton();
64      this.rbVMSizeLarge = new System.Windows.Forms.RadioButton();
65      this.rbVMSizeExtraLarge = new System.Windows.Forms.RadioButton();
66      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
67      this.gbDeploymentOptions = new System.Windows.Forms.GroupBox();
68      this.gbVMSize = new System.Windows.Forms.GroupBox();
[7339]69      this.gbNewHostedService.SuspendLayout();
[7424]70      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
[7547]71      this.gbStorageService.SuspendLayout();
72      this.gbDeploymentOptions.SuspendLayout();
73      this.gbVMSize.SuspendLayout();
[7339]74      this.SuspendLayout();
75      //
76      // label1
77      //
78      this.label1.AutoSize = true;
79      this.label1.Location = new System.Drawing.Point(12, 9);
80      this.label1.Name = "label1";
81      this.label1.Size = new System.Drawing.Size(111, 13);
[7578]82      this.label1.TabIndex = 0;
[7339]83      this.label1.Text = "Choose a subscription";
84      //
85      // cmbChooseSubscription
86      //
87      this.cmbChooseSubscription.FormattingEnabled = true;
88      this.cmbChooseSubscription.Location = new System.Drawing.Point(15, 25);
89      this.cmbChooseSubscription.Name = "cmbChooseSubscription";
[7429]90      this.cmbChooseSubscription.Size = new System.Drawing.Size(486, 21);
[7578]91      this.cmbChooseSubscription.TabIndex = 0;
[7339]92      this.cmbChooseSubscription.SelectedValueChanged += new System.EventHandler(this.cmbChooseSubscription_SelectedValueChanged);
93      //
94      // label2
95      //
96      this.label2.AutoSize = true;
97      this.label2.Location = new System.Drawing.Point(12, 49);
98      this.label2.Name = "label2";
99      this.label2.Size = new System.Drawing.Size(124, 13);
[7578]100      this.label2.TabIndex = 1;
[7339]101      this.label2.Text = "Choose a hosted service";
102      //
103      // cmbChooseHostedService
104      //
105      this.cmbChooseHostedService.FormattingEnabled = true;
106      this.cmbChooseHostedService.Location = new System.Drawing.Point(15, 65);
107      this.cmbChooseHostedService.Name = "cmbChooseHostedService";
[7429]108      this.cmbChooseHostedService.Size = new System.Drawing.Size(486, 21);
[7578]109      this.cmbChooseHostedService.TabIndex = 1;
[7551]110      this.cmbChooseHostedService.Validating += new System.ComponentModel.CancelEventHandler(this.cmbChooseHostedService_Validating);
[7339]111      //
112      // gbNewHostedService
113      //
114      this.gbNewHostedService.Controls.Add(this.cmbAffinityGroup);
[7354]115      this.gbNewHostedService.Controls.Add(this.cmbLocation);
[7339]116      this.gbNewHostedService.Controls.Add(this.rbAffinitGroup);
117      this.gbNewHostedService.Controls.Add(this.rbRegion);
118      this.gbNewHostedService.Controls.Add(this.label6);
119      this.gbNewHostedService.Controls.Add(this.label5);
[7354]120      this.gbNewHostedService.Controls.Add(this.tbServiceName);
[7339]121      this.gbNewHostedService.Controls.Add(this.label4);
[7354]122      this.gbNewHostedService.Controls.Add(this.tbLabel);
[7339]123      this.gbNewHostedService.Controls.Add(this.label3);
124      this.gbNewHostedService.Location = new System.Drawing.Point(15, 115);
125      this.gbNewHostedService.Name = "gbNewHostedService";
[7429]126      this.gbNewHostedService.Size = new System.Drawing.Size(486, 145);
[7578]127      this.gbNewHostedService.TabIndex = 3;
[7339]128      this.gbNewHostedService.TabStop = false;
129      this.gbNewHostedService.Text = "New hosted service";
130      //
131      // cmbAffinityGroup
132      //
133      this.cmbAffinityGroup.FormattingEnabled = true;
134      this.cmbAffinityGroup.Location = new System.Drawing.Point(267, 110);
135      this.cmbAffinityGroup.Name = "cmbAffinityGroup";
136      this.cmbAffinityGroup.Size = new System.Drawing.Size(194, 21);
137      this.cmbAffinityGroup.TabIndex = 9;
138      //
[7354]139      // cmbLocation
[7339]140      //
[7354]141      this.cmbLocation.FormattingEnabled = true;
142      this.cmbLocation.Location = new System.Drawing.Point(29, 110);
143      this.cmbLocation.Name = "cmbLocation";
144      this.cmbLocation.Size = new System.Drawing.Size(200, 21);
[7578]145      this.cmbLocation.TabIndex = 7;
[7339]146      //
147      // rbAffinitGroup
148      //
149      this.rbAffinitGroup.AutoSize = true;
150      this.rbAffinitGroup.Location = new System.Drawing.Point(247, 113);
151      this.rbAffinitGroup.Name = "rbAffinitGroup";
152      this.rbAffinitGroup.Size = new System.Drawing.Size(14, 13);
[7578]153      this.rbAffinitGroup.TabIndex = 8;
[7339]154      this.rbAffinitGroup.UseVisualStyleBackColor = true;
155      //
156      // rbRegion
157      //
158      this.rbRegion.AutoSize = true;
159      this.rbRegion.Checked = true;
160      this.rbRegion.Location = new System.Drawing.Point(9, 113);
161      this.rbRegion.Name = "rbRegion";
162      this.rbRegion.Size = new System.Drawing.Size(14, 13);
163      this.rbRegion.TabIndex = 6;
164      this.rbRegion.TabStop = true;
165      this.rbRegion.UseVisualStyleBackColor = true;
166      //
167      // label6
168      //
169      this.label6.AutoSize = true;
170      this.label6.Location = new System.Drawing.Point(6, 94);
171      this.label6.Name = "label6";
172      this.label6.Size = new System.Drawing.Size(159, 13);
173      this.label6.TabIndex = 5;
174      this.label6.Text = "Choose a region or affinity group";
175      //
176      // label5
177      //
178      this.label5.AutoSize = true;
179      this.label5.Location = new System.Drawing.Point(389, 74);
180      this.label5.Name = "label5";
181      this.label5.Size = new System.Drawing.Size(72, 13);
182      this.label5.TabIndex = 4;
183      this.label5.Text = ".cloudapp.net";
184      //
[7354]185      // tbServiceName
[7339]186      //
[7354]187      this.tbServiceName.Location = new System.Drawing.Point(9, 71);
188      this.tbServiceName.Name = "tbServiceName";
189      this.tbServiceName.Size = new System.Drawing.Size(377, 20);
190      this.tbServiceName.TabIndex = 3;
[7424]191      this.tbServiceName.Validating += new System.ComponentModel.CancelEventHandler(this.tbServiceName_Validating);
[7339]192      //
193      // label4
194      //
195      this.label4.AutoSize = true;
196      this.label4.Location = new System.Drawing.Point(6, 55);
197      this.label4.Name = "label4";
198      this.label4.Size = new System.Drawing.Size(169, 13);
199      this.label4.TabIndex = 2;
200      this.label4.Text = "Enter a URL prefix for your service";
201      //
[7354]202      // tbLabel
[7339]203      //
[7354]204      this.tbLabel.Location = new System.Drawing.Point(9, 32);
205      this.tbLabel.Name = "tbLabel";
206      this.tbLabel.Size = new System.Drawing.Size(453, 20);
207      this.tbLabel.TabIndex = 1;
[7424]208      this.tbLabel.Validating += new System.ComponentModel.CancelEventHandler(this.tbLabel_Validating);
[7339]209      //
210      // label3
211      //
212      this.label3.AutoSize = true;
213      this.label3.Location = new System.Drawing.Point(6, 16);
214      this.label3.Name = "label3";
215      this.label3.Size = new System.Drawing.Size(145, 13);
216      this.label3.TabIndex = 0;
217      this.label3.Text = "Enter a name for your service";
218      //
219      // cbNewHostedService
220      //
221      this.cbNewHostedService.AutoSize = true;
222      this.cbNewHostedService.Location = new System.Drawing.Point(15, 92);
223      this.cbNewHostedService.Name = "cbNewHostedService";
224      this.cbNewHostedService.Size = new System.Drawing.Size(152, 17);
[7578]225      this.cbNewHostedService.TabIndex = 2;
[7339]226      this.cbNewHostedService.Text = "Create new hosted service";
227      this.cbNewHostedService.UseVisualStyleBackColor = true;
228      this.cbNewHostedService.CheckedChanged += new System.EventHandler(this.cbNewHostedService_CheckedChanged);
229      //
[7354]230      // rbDeployToProduction
231      //
232      this.rbDeployToProduction.AutoSize = true;
[7547]233      this.rbDeployToProduction.Location = new System.Drawing.Point(9, 42);
[7354]234      this.rbDeployToProduction.Name = "rbDeployToProduction";
235      this.rbDeployToProduction.Size = new System.Drawing.Size(189, 17);
236      this.rbDeployToProduction.TabIndex = 1;
237      this.rbDeployToProduction.TabStop = true;
238      this.rbDeployToProduction.Text = "Deyploy to production environment";
239      this.rbDeployToProduction.UseVisualStyleBackColor = true;
240      //
[7339]241      // rbDeployToStaging
242      //
243      this.rbDeployToStaging.AutoSize = true;
[7354]244      this.rbDeployToStaging.Checked = true;
[7547]245      this.rbDeployToStaging.Location = new System.Drawing.Point(9, 19);
[7339]246      this.rbDeployToStaging.Name = "rbDeployToStaging";
247      this.rbDeployToStaging.Size = new System.Drawing.Size(168, 17);
248      this.rbDeployToStaging.TabIndex = 0;
249      this.rbDeployToStaging.TabStop = true;
250      this.rbDeployToStaging.Text = "Deploy to staging environment";
251      this.rbDeployToStaging.UseVisualStyleBackColor = true;
252      //
253      // btnAddCertificate
254      //
[7547]255      this.btnAddCertificate.Location = new System.Drawing.Point(15, 600);
[7339]256      this.btnAddCertificate.Name = "btnAddCertificate";
257      this.btnAddCertificate.Size = new System.Drawing.Size(99, 23);
[7578]258      this.btnAddCertificate.TabIndex = 7;
[7339]259      this.btnAddCertificate.Text = "Add certificate";
260      this.btnAddCertificate.UseVisualStyleBackColor = true;
261      this.btnAddCertificate.Click += new System.EventHandler(this.btnAddCertificate_Click);
262      //
263      // label9
264      //
265      this.label9.AutoSize = true;
[7547]266      this.label9.Location = new System.Drawing.Point(12, 626);
[7339]267      this.label9.Name = "label9";
[7547]268      this.label9.Size = new System.Drawing.Size(186, 13);
[7578]269      this.label9.TabIndex = 9;
[7547]270      this.label9.Text = "How many instances should be used?";
[7339]271      //
272      // tbInstanceCount
273      //
[7547]274      this.tbInstanceCount.Location = new System.Drawing.Point(15, 642);
[7339]275      this.tbInstanceCount.Name = "tbInstanceCount";
[7429]276      this.tbInstanceCount.Size = new System.Drawing.Size(488, 20);
[7578]277      this.tbInstanceCount.TabIndex = 12;
[7429]278      this.tbInstanceCount.Validating += new System.ComponentModel.CancelEventHandler(this.tbInstanceCount_Validating);
[7339]279      //
280      // lblCores
281      //
282      this.lblCores.AutoSize = true;
[7547]283      this.lblCores.Location = new System.Drawing.Point(471, 625);
[7339]284      this.lblCores.Name = "lblCores";
285      this.lblCores.Size = new System.Drawing.Size(30, 13);
[7578]286      this.lblCores.TabIndex = 11;
[7339]287      this.lblCores.Text = "0 / 0";
288      //
289      // label10
290      //
291      this.label10.AutoSize = true;
[7547]292      this.label10.Location = new System.Drawing.Point(436, 625);
[7339]293      this.label10.Name = "label10";
294      this.label10.Size = new System.Drawing.Size(40, 13);
[7578]295      this.label10.TabIndex = 10;
[7339]296      this.label10.Text = "Cores: ";
297      //
298      // progressBar
299      //
[7547]300      this.progressBar.Location = new System.Drawing.Point(15, 668);
[7339]301      this.progressBar.MarqueeAnimationSpeed = 10;
302      this.progressBar.Name = "progressBar";
[7429]303      this.progressBar.Size = new System.Drawing.Size(326, 23);
[7339]304      this.progressBar.Style = System.Windows.Forms.ProgressBarStyle.Marquee;
305      this.progressBar.TabIndex = 16;
306      //
307      // btnOk
308      //
[7547]309      this.btnOk.Location = new System.Drawing.Point(347, 668);
[7339]310      this.btnOk.Name = "btnOk";
311      this.btnOk.Size = new System.Drawing.Size(75, 23);
[7578]312      this.btnOk.TabIndex = 13;
[7339]313      this.btnOk.Text = "OK";
314      this.btnOk.UseVisualStyleBackColor = true;
315      this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
316      //
317      // btnCancel
318      //
[7547]319      this.btnCancel.Location = new System.Drawing.Point(428, 668);
[7339]320      this.btnCancel.Name = "btnCancel";
321      this.btnCancel.Size = new System.Drawing.Size(75, 23);
[7578]322      this.btnCancel.TabIndex = 14;
[7339]323      this.btnCancel.Text = "Cancel";
324      this.btnCancel.UseVisualStyleBackColor = true;
325      this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
326      //
[7362]327      // lblCertificateFile
328      //
329      this.lblCertificateFile.AutoSize = true;
[7565]330      this.lblCertificateFile.Location = new System.Drawing.Point(120, 605);
[7362]331      this.lblCertificateFile.Name = "lblCertificateFile";
332      this.lblCertificateFile.Size = new System.Drawing.Size(0, 13);
[7578]333      this.lblCertificateFile.TabIndex = 8;
[7362]334      //
[7424]335      // errorProvider
336      //
337      this.errorProvider.ContainerControl = this;
338      //
[7547]339      // gbStorageService
340      //
341      this.gbStorageService.Controls.Add(this.cbCreateBlobIfNotExists);
342      this.gbStorageService.Controls.Add(this.tbBlobContainer);
343      this.gbStorageService.Controls.Add(this.label11);
[7551]344      this.gbStorageService.Controls.Add(this.cmbStorageServices);
[7547]345      this.gbStorageService.Controls.Add(this.label8);
346      this.gbStorageService.Location = new System.Drawing.Point(15, 267);
347      this.gbStorageService.Name = "gbStorageService";
348      this.gbStorageService.Size = new System.Drawing.Size(486, 128);
[7578]349      this.gbStorageService.TabIndex = 4;
[7547]350      this.gbStorageService.TabStop = false;
351      this.gbStorageService.Text = "Set storage service";
352      //
[7551]353      // cbCreateBlobIfNotExists
[7547]354      //
[7551]355      this.cbCreateBlobIfNotExists.AutoSize = true;
356      this.cbCreateBlobIfNotExists.Checked = true;
357      this.cbCreateBlobIfNotExists.CheckState = System.Windows.Forms.CheckState.Checked;
358      this.cbCreateBlobIfNotExists.Location = new System.Drawing.Point(9, 98);
359      this.cbCreateBlobIfNotExists.Name = "cbCreateBlobIfNotExists";
360      this.cbCreateBlobIfNotExists.Size = new System.Drawing.Size(182, 17);
[7578]361      this.cbCreateBlobIfNotExists.TabIndex = 4;
[7551]362      this.cbCreateBlobIfNotExists.Text = "Create blob container if not exists";
363      this.cbCreateBlobIfNotExists.UseVisualStyleBackColor = true;
[7547]364      //
[7551]365      // tbBlobContainer
[7547]366      //
[7551]367      this.tbBlobContainer.Location = new System.Drawing.Point(9, 72);
368      this.tbBlobContainer.Name = "tbBlobContainer";
369      this.tbBlobContainer.Size = new System.Drawing.Size(452, 20);
[7578]370      this.tbBlobContainer.TabIndex = 3;
[7551]371      this.tbBlobContainer.Validating += new System.ComponentModel.CancelEventHandler(this.tbBlobContainer_Validating);
[7547]372      //
373      // label11
374      //
375      this.label11.AutoSize = true;
376      this.label11.Location = new System.Drawing.Point(6, 56);
377      this.label11.Name = "label11";
378      this.label11.Size = new System.Drawing.Size(96, 13);
[7578]379      this.label11.TabIndex = 2;
[7547]380      this.label11.Text = "Set blob container:";
381      //
[7551]382      // cmbStorageServices
[7547]383      //
[7551]384      this.cmbStorageServices.FormattingEnabled = true;
385      this.cmbStorageServices.Location = new System.Drawing.Point(9, 32);
386      this.cmbStorageServices.Name = "cmbStorageServices";
387      this.cmbStorageServices.Size = new System.Drawing.Size(452, 21);
[7578]388      this.cmbStorageServices.TabIndex = 1;
[7551]389      this.cmbStorageServices.Validating += new System.ComponentModel.CancelEventHandler(this.cmbStorageServices_Validating);
[7547]390      //
[7551]391      // label8
[7547]392      //
[7551]393      this.label8.AutoSize = true;
394      this.label8.Location = new System.Drawing.Point(6, 16);
395      this.label8.Name = "label8";
396      this.label8.Size = new System.Drawing.Size(120, 13);
[7578]397      this.label8.TabIndex = 0;
[7551]398      this.label8.Text = "Select storage account:";
[7547]399      //
400      // rbVMSizeMedium
401      //
402      this.rbVMSizeMedium.AutoSize = true;
403      this.rbVMSizeMedium.Location = new System.Drawing.Point(9, 42);
404      this.rbVMSizeMedium.Name = "rbVMSizeMedium";
405      this.rbVMSizeMedium.Size = new System.Drawing.Size(62, 17);
406      this.rbVMSizeMedium.TabIndex = 1;
407      this.rbVMSizeMedium.TabStop = true;
408      this.rbVMSizeMedium.Text = "Medium";
409      this.toolTip.SetToolTip(this.rbVMSizeMedium, "2 CPU Cores; 3.5 GB Memory; $0.24");
410      this.rbVMSizeMedium.UseVisualStyleBackColor = true;
411      //
412      // rbVMSizeSmall
413      //
414      this.rbVMSizeSmall.AutoSize = true;
415      this.rbVMSizeSmall.Checked = true;
416      this.rbVMSizeSmall.Location = new System.Drawing.Point(9, 19);
417      this.rbVMSizeSmall.Name = "rbVMSizeSmall";
418      this.rbVMSizeSmall.Size = new System.Drawing.Size(50, 17);
419      this.rbVMSizeSmall.TabIndex = 0;
420      this.rbVMSizeSmall.TabStop = true;
421      this.rbVMSizeSmall.Text = "Small";
422      this.toolTip.SetToolTip(this.rbVMSizeSmall, "1 CPU Core; 1.75 GB Memory; $0.04");
423      this.rbVMSizeSmall.UseVisualStyleBackColor = true;
424      //
425      // rbVMSizeLarge
426      //
427      this.rbVMSizeLarge.AutoSize = true;
428      this.rbVMSizeLarge.Location = new System.Drawing.Point(9, 65);
429      this.rbVMSizeLarge.Name = "rbVMSizeLarge";
430      this.rbVMSizeLarge.Size = new System.Drawing.Size(52, 17);
431      this.rbVMSizeLarge.TabIndex = 2;
432      this.rbVMSizeLarge.TabStop = true;
433      this.rbVMSizeLarge.Text = "Large";
434      this.toolTip.SetToolTip(this.rbVMSizeLarge, "4 CPU Cores; 7 GB Memory; $0.48");
435      this.rbVMSizeLarge.UseVisualStyleBackColor = true;
436      //
437      // rbVMSizeExtraLarge
438      //
439      this.rbVMSizeExtraLarge.AutoSize = true;
440      this.rbVMSizeExtraLarge.Location = new System.Drawing.Point(9, 88);
441      this.rbVMSizeExtraLarge.Name = "rbVMSizeExtraLarge";
442      this.rbVMSizeExtraLarge.Size = new System.Drawing.Size(79, 17);
443      this.rbVMSizeExtraLarge.TabIndex = 3;
444      this.rbVMSizeExtraLarge.TabStop = true;
445      this.rbVMSizeExtraLarge.Text = "Extra Large";
446      this.toolTip.SetToolTip(this.rbVMSizeExtraLarge, "8 CPU Cores; 14 GB Memory; $0.96");
447      this.rbVMSizeExtraLarge.UseVisualStyleBackColor = true;
448      //
449      // gbDeploymentOptions
450      //
451      this.gbDeploymentOptions.Controls.Add(this.rbDeployToProduction);
452      this.gbDeploymentOptions.Controls.Add(this.rbDeployToStaging);
453      this.gbDeploymentOptions.Location = new System.Drawing.Point(15, 401);
454      this.gbDeploymentOptions.Name = "gbDeploymentOptions";
455      this.gbDeploymentOptions.Size = new System.Drawing.Size(486, 69);
[7578]456      this.gbDeploymentOptions.TabIndex = 5;
[7547]457      this.gbDeploymentOptions.TabStop = false;
458      this.gbDeploymentOptions.Text = "Deployment options";
459      //
460      // gbVMSize
461      //
462      this.gbVMSize.Controls.Add(this.rbVMSizeExtraLarge);
463      this.gbVMSize.Controls.Add(this.rbVMSizeSmall);
464      this.gbVMSize.Controls.Add(this.rbVMSizeLarge);
465      this.gbVMSize.Controls.Add(this.rbVMSizeMedium);
466      this.gbVMSize.Location = new System.Drawing.Point(15, 476);
467      this.gbVMSize.Name = "gbVMSize";
468      this.gbVMSize.Size = new System.Drawing.Size(486, 118);
[7578]469      this.gbVMSize.TabIndex = 6;
[7547]470      this.gbVMSize.TabStop = false;
471      this.gbVMSize.Text = "Virtual machine size";
472      //
[7339]473      // AddAzureServiceDialog
474      //
475      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
476      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
[7424]477      this.AutoValidate = System.Windows.Forms.AutoValidate.EnableAllowFocusChange;
[7547]478      this.ClientSize = new System.Drawing.Size(517, 700);
479      this.Controls.Add(this.gbVMSize);
480      this.Controls.Add(this.gbDeploymentOptions);
481      this.Controls.Add(this.gbStorageService);
[7362]482      this.Controls.Add(this.lblCertificateFile);
[7339]483      this.Controls.Add(this.lblCores);
484      this.Controls.Add(this.btnCancel);
485      this.Controls.Add(this.btnOk);
486      this.Controls.Add(this.progressBar);
487      this.Controls.Add(this.label10);
488      this.Controls.Add(this.tbInstanceCount);
489      this.Controls.Add(this.label9);
490      this.Controls.Add(this.btnAddCertificate);
491      this.Controls.Add(this.cbNewHostedService);
492      this.Controls.Add(this.gbNewHostedService);
493      this.Controls.Add(this.cmbChooseHostedService);
494      this.Controls.Add(this.label2);
495      this.Controls.Add(this.cmbChooseSubscription);
496      this.Controls.Add(this.label1);
[7551]497      this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
[7547]498      this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
[7551]499      this.MaximizeBox = false;
500      this.MinimizeBox = false;
[7339]501      this.Name = "AddAzureServiceDialog";
502      this.Text = "Create New Azure Slave";
503      this.gbNewHostedService.ResumeLayout(false);
504      this.gbNewHostedService.PerformLayout();
[7424]505      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
[7547]506      this.gbStorageService.ResumeLayout(false);
507      this.gbStorageService.PerformLayout();
508      this.gbDeploymentOptions.ResumeLayout(false);
509      this.gbDeploymentOptions.PerformLayout();
510      this.gbVMSize.ResumeLayout(false);
511      this.gbVMSize.PerformLayout();
[7339]512      this.ResumeLayout(false);
513      this.PerformLayout();
514
515    }
516
517    #endregion
518
519    private System.Windows.Forms.Label label1;
520    private System.Windows.Forms.ComboBox cmbChooseSubscription;
521    private System.Windows.Forms.Label label2;
522    private System.Windows.Forms.ComboBox cmbChooseHostedService;
523    private System.Windows.Forms.GroupBox gbNewHostedService;
524    private System.Windows.Forms.ComboBox cmbAffinityGroup;
[7354]525    private System.Windows.Forms.ComboBox cmbLocation;
[7339]526    private System.Windows.Forms.RadioButton rbAffinitGroup;
527    private System.Windows.Forms.RadioButton rbRegion;
528    private System.Windows.Forms.Label label6;
529    private System.Windows.Forms.Label label5;
[7354]530    private System.Windows.Forms.TextBox tbServiceName;
[7339]531    private System.Windows.Forms.Label label4;
[7354]532    private System.Windows.Forms.TextBox tbLabel;
[7339]533    private System.Windows.Forms.Label label3;
534    private System.Windows.Forms.CheckBox cbNewHostedService;
535    private System.Windows.Forms.RadioButton rbDeployToProduction;
536    private System.Windows.Forms.RadioButton rbDeployToStaging;
537    private System.Windows.Forms.Button btnAddCertificate;
538    private System.Windows.Forms.Label label9;
539    private System.Windows.Forms.TextBox tbInstanceCount;
540    private System.Windows.Forms.Label lblCores;
541    private System.Windows.Forms.Label label10;
542    private System.Windows.Forms.ProgressBar progressBar;
543    private System.Windows.Forms.Button btnOk;
544    private System.Windows.Forms.Button btnCancel;
[7362]545    private System.Windows.Forms.Label lblCertificateFile;
[7424]546    private System.Windows.Forms.ErrorProvider errorProvider;
[7547]547    private System.Windows.Forms.RadioButton rbVMSizeExtraLarge;
548    private System.Windows.Forms.RadioButton rbVMSizeLarge;
549    private System.Windows.Forms.RadioButton rbVMSizeMedium;
550    private System.Windows.Forms.RadioButton rbVMSizeSmall;
551    private System.Windows.Forms.GroupBox gbStorageService;
552    private System.Windows.Forms.CheckBox cbCreateBlobIfNotExists;
553    private System.Windows.Forms.TextBox tbBlobContainer;
554    private System.Windows.Forms.Label label11;
[7551]555    private System.Windows.Forms.ComboBox cmbStorageServices;
[7547]556    private System.Windows.Forms.Label label8;
557    private System.Windows.Forms.ToolTip toolTip;
558    private System.Windows.Forms.GroupBox gbVMSize;
559    private System.Windows.Forms.GroupBox gbDeploymentOptions;
[7339]560  }
561}
Note: See TracBrowser for help on using the repository browser.