Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 8037 was 7362, checked in by spimming, 13 years ago

#1680:

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