Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 15802 was 8048, checked in by spimming, 13 years ago

#1680:

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