Mercurial > servermonitor
comparison ServerMonitor/Forms/InputDialog.Designer.cs @ 5:b6fe203af9d5
Private key passwords and validation
author | Brad Greco <brad@bgreco.net> |
---|---|
date | Thu, 28 Feb 2019 21:19:32 -0500 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
4:3142e52cbe69 | 5:b6fe203af9d5 |
---|---|
1 namespace ServerMonitorApp | |
2 { | |
3 partial class InputDialog | |
4 { | |
5 /// <summary> | |
6 /// Required designer variable. | |
7 /// </summary> | |
8 private System.ComponentModel.IContainer components = null; | |
9 | |
10 /// <summary> | |
11 /// Clean up any resources being used. | |
12 /// </summary> | |
13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> | |
14 protected override void Dispose(bool disposing) | |
15 { | |
16 if (disposing && (components != null)) | |
17 { | |
18 components.Dispose(); | |
19 } | |
20 base.Dispose(disposing); | |
21 } | |
22 | |
23 #region Windows Form Designer generated code | |
24 | |
25 /// <summary> | |
26 /// Required method for Designer support - do not modify | |
27 /// the contents of this method with the code editor. | |
28 /// </summary> | |
29 private void InitializeComponent() | |
30 { | |
31 this.OkButton = new System.Windows.Forms.Button(); | |
32 this.InputCancelButton = new System.Windows.Forms.Button(); | |
33 this.MessageLabel = new System.Windows.Forms.Label(); | |
34 this.panel1 = new System.Windows.Forms.Panel(); | |
35 this.MessageIconPictureBox = new System.Windows.Forms.PictureBox(); | |
36 this.InputTextBox = new System.Windows.Forms.TextBox(); | |
37 this.panel1.SuspendLayout(); | |
38 ((System.ComponentModel.ISupportInitialize)(this.MessageIconPictureBox)).BeginInit(); | |
39 this.SuspendLayout(); | |
40 // | |
41 // OkButton | |
42 // | |
43 this.OkButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); | |
44 this.OkButton.DialogResult = System.Windows.Forms.DialogResult.OK; | |
45 this.OkButton.Location = new System.Drawing.Point(211, 13); | |
46 this.OkButton.Name = "OkButton"; | |
47 this.OkButton.Size = new System.Drawing.Size(75, 23); | |
48 this.OkButton.TabIndex = 1; | |
49 this.OkButton.Text = "&OK"; | |
50 this.OkButton.UseVisualStyleBackColor = true; | |
51 // | |
52 // InputCancelButton | |
53 // | |
54 this.InputCancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); | |
55 this.InputCancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel; | |
56 this.InputCancelButton.Location = new System.Drawing.Point(292, 13); | |
57 this.InputCancelButton.Name = "InputCancelButton"; | |
58 this.InputCancelButton.Size = new System.Drawing.Size(75, 23); | |
59 this.InputCancelButton.TabIndex = 2; | |
60 this.InputCancelButton.Text = "&Cancel"; | |
61 this.InputCancelButton.UseVisualStyleBackColor = true; | |
62 // | |
63 // MessageLabel | |
64 // | |
65 this.MessageLabel.AutoSize = true; | |
66 this.MessageLabel.Location = new System.Drawing.Point(75, 31); | |
67 this.MessageLabel.Name = "MessageLabel"; | |
68 this.MessageLabel.Size = new System.Drawing.Size(34, 13); | |
69 this.MessageLabel.TabIndex = 3; | |
70 this.MessageLabel.Text = "Input:"; | |
71 // | |
72 // panel1 | |
73 // | |
74 this.panel1.BackColor = System.Drawing.SystemColors.Control; | |
75 this.panel1.Controls.Add(this.OkButton); | |
76 this.panel1.Controls.Add(this.InputCancelButton); | |
77 this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom; | |
78 this.panel1.Location = new System.Drawing.Point(0, 84); | |
79 this.panel1.Name = "panel1"; | |
80 this.panel1.Size = new System.Drawing.Size(379, 49); | |
81 this.panel1.TabIndex = 5; | |
82 // | |
83 // MessageIconPictureBox | |
84 // | |
85 this.MessageIconPictureBox.Location = new System.Drawing.Point(25, 41); | |
86 this.MessageIconPictureBox.Name = "MessageIconPictureBox"; | |
87 this.MessageIconPictureBox.Size = new System.Drawing.Size(32, 32); | |
88 this.MessageIconPictureBox.TabIndex = 4; | |
89 this.MessageIconPictureBox.TabStop = false; | |
90 // | |
91 // InputTextBox | |
92 // | |
93 this.InputTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | |
94 | System.Windows.Forms.AnchorStyles.Right))); | |
95 this.InputTextBox.Location = new System.Drawing.Point(78, 55); | |
96 this.InputTextBox.Name = "InputTextBox"; | |
97 this.InputTextBox.PasswordChar = '●'; | |
98 this.InputTextBox.Size = new System.Drawing.Size(289, 20); | |
99 this.InputTextBox.TabIndex = 1; | |
100 this.InputTextBox.TextChanged += new System.EventHandler(this.InputTextBox_TextChanged); | |
101 // | |
102 // InputDialog | |
103 // | |
104 this.AcceptButton = this.OkButton; | |
105 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); | |
106 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; | |
107 this.BackColor = System.Drawing.SystemColors.Control; | |
108 this.CancelButton = this.InputCancelButton; | |
109 this.ClientSize = new System.Drawing.Size(379, 133); | |
110 this.Controls.Add(this.InputTextBox); | |
111 this.Controls.Add(this.panel1); | |
112 this.Controls.Add(this.MessageIconPictureBox); | |
113 this.Controls.Add(this.MessageLabel); | |
114 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; | |
115 this.MaximizeBox = false; | |
116 this.MinimizeBox = false; | |
117 this.Name = "InputDialog"; | |
118 this.ShowInTaskbar = false; | |
119 this.Text = "Unlock private key"; | |
120 this.Load += new System.EventHandler(this.InputDialog_Load); | |
121 this.panel1.ResumeLayout(false); | |
122 ((System.ComponentModel.ISupportInitialize)(this.MessageIconPictureBox)).EndInit(); | |
123 this.ResumeLayout(false); | |
124 this.PerformLayout(); | |
125 | |
126 } | |
127 | |
128 #endregion | |
129 | |
130 private System.Windows.Forms.Button OkButton; | |
131 private System.Windows.Forms.Button InputCancelButton; | |
132 private System.Windows.Forms.Label MessageLabel; | |
133 private System.Windows.Forms.PictureBox MessageIconPictureBox; | |
134 private System.Windows.Forms.Panel panel1; | |
135 private System.Windows.Forms.TextBox InputTextBox; | |
136 } | |
137 } |