[7608] | 1 | namespace HeuristicLab.Clients.Hive.CloudManager.Views {
|
---|
| 2 | partial class DeleteHostedServiceView {
|
---|
| 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(DeleteHostedServiceView));
|
---|
| 27 | this.btnNo = new System.Windows.Forms.Button();
|
---|
| 28 | this.btnYes = new System.Windows.Forms.Button();
|
---|
| 29 | this.progressBar = new System.Windows.Forms.ProgressBar();
|
---|
| 30 | this.lblDialogText = new System.Windows.Forms.Label();
|
---|
| 31 | this.SuspendLayout();
|
---|
| 32 | //
|
---|
| 33 | // btnNo
|
---|
| 34 | //
|
---|
| 35 | this.btnNo.Location = new System.Drawing.Point(407, 66);
|
---|
| 36 | this.btnNo.Name = "btnNo";
|
---|
| 37 | this.btnNo.Size = new System.Drawing.Size(75, 23);
|
---|
| 38 | this.btnNo.TabIndex = 0;
|
---|
| 39 | this.btnNo.Text = "No";
|
---|
| 40 | this.btnNo.UseVisualStyleBackColor = true;
|
---|
| 41 | this.btnNo.Click += new System.EventHandler(this.btnNo_Click);
|
---|
| 42 | //
|
---|
| 43 | // btnYes
|
---|
| 44 | //
|
---|
| 45 | this.btnYes.Location = new System.Drawing.Point(326, 66);
|
---|
| 46 | this.btnYes.Name = "btnYes";
|
---|
| 47 | this.btnYes.Size = new System.Drawing.Size(75, 23);
|
---|
| 48 | this.btnYes.TabIndex = 1;
|
---|
| 49 | this.btnYes.Text = "Yes";
|
---|
| 50 | this.btnYes.UseVisualStyleBackColor = true;
|
---|
| 51 | this.btnYes.Click += new System.EventHandler(this.btnYes_Click);
|
---|
| 52 | //
|
---|
| 53 | // progressBar
|
---|
| 54 | //
|
---|
| 55 | this.progressBar.Location = new System.Drawing.Point(12, 66);
|
---|
| 56 | this.progressBar.MarqueeAnimationSpeed = 10;
|
---|
| 57 | this.progressBar.Name = "progressBar";
|
---|
| 58 | this.progressBar.Size = new System.Drawing.Size(307, 23);
|
---|
| 59 | this.progressBar.Style = System.Windows.Forms.ProgressBarStyle.Marquee;
|
---|
| 60 | this.progressBar.TabIndex = 2;
|
---|
| 61 | this.progressBar.Visible = false;
|
---|
| 62 | //
|
---|
| 63 | // lblDialogText
|
---|
| 64 | //
|
---|
| 65 | this.lblDialogText.AutoSize = true;
|
---|
| 66 | this.lblDialogText.Location = new System.Drawing.Point(12, 14);
|
---|
| 67 | this.lblDialogText.Name = "lblDialogText";
|
---|
| 68 | this.lblDialogText.Size = new System.Drawing.Size(175, 13);
|
---|
| 69 | this.lblDialogText.TabIndex = 3;
|
---|
| 70 | this.lblDialogText.Text = "Are you sure you want to delete \"\"?";
|
---|
| 71 | //
|
---|
| 72 | // DeleteHostedServiceView
|
---|
| 73 | //
|
---|
| 74 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 75 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
| 76 | this.ClientSize = new System.Drawing.Size(494, 99);
|
---|
| 77 | this.Controls.Add(this.lblDialogText);
|
---|
| 78 | this.Controls.Add(this.progressBar);
|
---|
| 79 | this.Controls.Add(this.btnYes);
|
---|
| 80 | this.Controls.Add(this.btnNo);
|
---|
| 81 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
---|
| 82 | this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
---|
| 83 | this.MaximizeBox = false;
|
---|
| 84 | this.MinimizeBox = false;
|
---|
| 85 | this.Name = "DeleteHostedServiceView";
|
---|
| 86 | this.Text = "Delete Hosted Service";
|
---|
| 87 | this.ResumeLayout(false);
|
---|
| 88 | this.PerformLayout();
|
---|
| 89 |
|
---|
| 90 | }
|
---|
| 91 |
|
---|
| 92 | #endregion
|
---|
| 93 |
|
---|
| 94 | private System.Windows.Forms.Button btnNo;
|
---|
| 95 | private System.Windows.Forms.Button btnYes;
|
---|
| 96 | private System.Windows.Forms.ProgressBar progressBar;
|
---|
| 97 | private System.Windows.Forms.Label lblDialogText;
|
---|
| 98 | }
|
---|
| 99 | } |
---|