Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive.Azure/HeuristicLab.Clients.Hive.CloudManager/3.3/Views/AddCertificate.Designer.cs @ 7339

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

#1680:

  • List-Operations added to Interface and AzureProvider
  • AddCertificate- and AddAzureService-Dialog added
File size: 5.6 KB
Line 
1namespace HeuristicLab.Clients.Hive.CloudManager.Views {
2  partial class AddCertificate {
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      this.label1 = new System.Windows.Forms.Label();
27      this.tbCertificateFile = new System.Windows.Forms.TextBox();
28      this.btnBrowseCertificateFile = new System.Windows.Forms.Button();
29      this.label8 = new System.Windows.Forms.Label();
30      this.tbCertificatePassword = new System.Windows.Forms.TextBox();
31      this.progressBar = new System.Windows.Forms.ProgressBar();
32      this.btnOk = new System.Windows.Forms.Button();
33      this.btnCancel = new System.Windows.Forms.Button();
34      this.SuspendLayout();
35      //
36      // label1
37      //
38      this.label1.AutoSize = true;
39      this.label1.Location = new System.Drawing.Point(12, 9);
40      this.label1.Name = "label1";
41      this.label1.Size = new System.Drawing.Size(70, 13);
42      this.label1.TabIndex = 2;
43      this.label1.Text = "Certificate file";
44      //
45      // tbCertificateFile
46      //
47      this.tbCertificateFile.Location = new System.Drawing.Point(15, 25);
48      this.tbCertificateFile.Name = "tbCertificateFile";
49      this.tbCertificateFile.ReadOnly = true;
50      this.tbCertificateFile.Size = new System.Drawing.Size(388, 20);
51      this.tbCertificateFile.TabIndex = 3;
52      //
53      // btnBrowseCertificateFile
54      //
55      this.btnBrowseCertificateFile.Location = new System.Drawing.Point(409, 25);
56      this.btnBrowseCertificateFile.Name = "btnBrowseCertificateFile";
57      this.btnBrowseCertificateFile.Size = new System.Drawing.Size(75, 23);
58      this.btnBrowseCertificateFile.TabIndex = 5;
59      this.btnBrowseCertificateFile.Text = "Browse ...";
60      this.btnBrowseCertificateFile.UseVisualStyleBackColor = true;
61      this.btnBrowseCertificateFile.Click += new System.EventHandler(this.btnBrowseCertificateFile_Click);
62      //
63      // label8
64      //
65      this.label8.AutoSize = true;
66      this.label8.Location = new System.Drawing.Point(12, 48);
67      this.label8.Name = "label8";
68      this.label8.Size = new System.Drawing.Size(53, 13);
69      this.label8.TabIndex = 6;
70      this.label8.Text = "Password";
71      //
72      // tbCertificatePassword
73      //
74      this.tbCertificatePassword.Location = new System.Drawing.Point(15, 64);
75      this.tbCertificatePassword.Name = "tbCertificatePassword";
76      this.tbCertificatePassword.PasswordChar = '*';
77      this.tbCertificatePassword.Size = new System.Drawing.Size(469, 20);
78      this.tbCertificatePassword.TabIndex = 7;
79      //
80      // progressBar
81      //
82      this.progressBar.Location = new System.Drawing.Point(15, 90);
83      this.progressBar.MarqueeAnimationSpeed = 10;
84      this.progressBar.Name = "progressBar";
85      this.progressBar.Size = new System.Drawing.Size(307, 23);
86      this.progressBar.Style = System.Windows.Forms.ProgressBarStyle.Marquee;
87      this.progressBar.TabIndex = 32;
88      this.progressBar.Visible = false;
89      //
90      // btnOk
91      //
92      this.btnOk.Location = new System.Drawing.Point(328, 90);
93      this.btnOk.Name = "btnOk";
94      this.btnOk.Size = new System.Drawing.Size(75, 23);
95      this.btnOk.TabIndex = 31;
96      this.btnOk.Text = "OK";
97      this.btnOk.UseVisualStyleBackColor = true;
98      this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
99      //
100      // btnCancel
101      //
102      this.btnCancel.Location = new System.Drawing.Point(409, 90);
103      this.btnCancel.Name = "btnCancel";
104      this.btnCancel.Size = new System.Drawing.Size(75, 23);
105      this.btnCancel.TabIndex = 30;
106      this.btnCancel.Text = "Cancel";
107      this.btnCancel.UseVisualStyleBackColor = true;
108      this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
109      //
110      // AddCertificate
111      //
112      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
113      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
114      this.ClientSize = new System.Drawing.Size(499, 126);
115      this.Controls.Add(this.progressBar);
116      this.Controls.Add(this.btnOk);
117      this.Controls.Add(this.btnCancel);
118      this.Controls.Add(this.tbCertificatePassword);
119      this.Controls.Add(this.label8);
120      this.Controls.Add(this.btnBrowseCertificateFile);
121      this.Controls.Add(this.tbCertificateFile);
122      this.Controls.Add(this.label1);
123      this.Name = "AddCertificate";
124      this.Text = "AddCertificate";
125      this.ResumeLayout(false);
126      this.PerformLayout();
127
128    }
129
130    #endregion
131
132    private System.Windows.Forms.Label label1;
133    private System.Windows.Forms.TextBox tbCertificateFile;
134    private System.Windows.Forms.Button btnBrowseCertificateFile;
135    private System.Windows.Forms.Label label8;
136    private System.Windows.Forms.TextBox tbCertificatePassword;
137    private System.Windows.Forms.ProgressBar progressBar;
138    private System.Windows.Forms.Button btnOk;
139    private System.Windows.Forms.Button btnCancel;
140  }
141}
Note: See TracBrowser for help on using the repository browser.