Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive.Azure/HeuristicLab.Clients.Hive.CloudManager/3.3/Views/DeleteDeploymentView.Designer.cs @ 11679

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

#1680: New dialog to delete deployments

File size: 4.6 KB
Line 
1namespace HeuristicLab.Clients.Hive.CloudManager.Views {
2  partial class DeleteDeploymentView {
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(DeleteDeploymentView));
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.cbDeleteHostedService = new System.Windows.Forms.CheckBox();
32      this.SuspendLayout();
33      //
34      // btnNo
35      //
36      this.btnNo.Location = new System.Drawing.Point(407, 66);
37      this.btnNo.Name = "btnNo";
38      this.btnNo.Size = new System.Drawing.Size(75, 23);
39      this.btnNo.TabIndex = 0;
40      this.btnNo.Text = "No";
41      this.btnNo.UseVisualStyleBackColor = true;
42      this.btnNo.Click += new System.EventHandler(this.btnNo_Click);
43      //
44      // btnYes
45      //
46      this.btnYes.Location = new System.Drawing.Point(326, 66);
47      this.btnYes.Name = "btnYes";
48      this.btnYes.Size = new System.Drawing.Size(75, 23);
49      this.btnYes.TabIndex = 1;
50      this.btnYes.Text = "Yes";
51      this.btnYes.UseVisualStyleBackColor = true;
52      this.btnYes.Click += new System.EventHandler(this.btnYes_Click);
53      //
54      // progressBar
55      //
56      this.progressBar.Location = new System.Drawing.Point(12, 66);
57      this.progressBar.MarqueeAnimationSpeed = 10;
58      this.progressBar.Name = "progressBar";
59      this.progressBar.Size = new System.Drawing.Size(307, 23);
60      this.progressBar.Style = System.Windows.Forms.ProgressBarStyle.Marquee;
61      this.progressBar.TabIndex = 2;
62      this.progressBar.Visible = false;
63      //
64      // lblDialogText
65      //
66      this.lblDialogText.AutoSize = true;
67      this.lblDialogText.Location = new System.Drawing.Point(12, 14);
68      this.lblDialogText.Name = "lblDialogText";
69      this.lblDialogText.Size = new System.Drawing.Size(175, 13);
70      this.lblDialogText.TabIndex = 3;
71      this.lblDialogText.Text = "Are you sure you want to delete \"\"?";
72      //
73      // cbDeleteHostedService
74      //
75      this.cbDeleteHostedService.AutoSize = true;
76      this.cbDeleteHostedService.Location = new System.Drawing.Point(13, 30);
77      this.cbDeleteHostedService.Name = "cbDeleteHostedService";
78      this.cbDeleteHostedService.Size = new System.Drawing.Size(154, 17);
79      this.cbDeleteHostedService.TabIndex = 4;
80      this.cbDeleteHostedService.Text = "Also delete Hosted Service";
81      this.cbDeleteHostedService.UseVisualStyleBackColor = true;
82      this.cbDeleteHostedService.Visible = false;
83      //
84      // DeleteDeploymentView
85      //
86      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
87      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
88      this.ClientSize = new System.Drawing.Size(494, 99);
89      this.Controls.Add(this.cbDeleteHostedService);
90      this.Controls.Add(this.lblDialogText);
91      this.Controls.Add(this.progressBar);
92      this.Controls.Add(this.btnYes);
93      this.Controls.Add(this.btnNo);
94      this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
95      this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
96      this.MaximizeBox = false;
97      this.MinimizeBox = false;
98      this.Name = "DeleteDeploymentView";
99      this.Text = "Delete Deployment";
100      this.ResumeLayout(false);
101      this.PerformLayout();
102
103    }
104
105    #endregion
106
107    private System.Windows.Forms.Button btnNo;
108    private System.Windows.Forms.Button btnYes;
109    private System.Windows.Forms.ProgressBar progressBar;
110    private System.Windows.Forms.Label lblDialogText;
111    private System.Windows.Forms.CheckBox cbDeleteHostedService;
112  }
113}
Note: See TracBrowser for help on using the repository browser.