Mercurial > servermonitor
view ServerMonitor/Forms/InputDialog.Designer.cs @ 18:b713b9db4c82
HTTP checks.
author | Brad Greco <brad@bgreco.net> |
---|---|
date | Mon, 27 May 2019 15:40:44 -0400 |
parents | b6fe203af9d5 |
children |
line wrap: on
line source
namespace ServerMonitorApp { partial class InputDialog { /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Clean up any resources being used. /// </summary> /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.OkButton = new System.Windows.Forms.Button(); this.InputCancelButton = new System.Windows.Forms.Button(); this.MessageLabel = new System.Windows.Forms.Label(); this.panel1 = new System.Windows.Forms.Panel(); this.MessageIconPictureBox = new System.Windows.Forms.PictureBox(); this.InputTextBox = new System.Windows.Forms.TextBox(); this.panel1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.MessageIconPictureBox)).BeginInit(); this.SuspendLayout(); // // OkButton // this.OkButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.OkButton.DialogResult = System.Windows.Forms.DialogResult.OK; this.OkButton.Location = new System.Drawing.Point(211, 13); this.OkButton.Name = "OkButton"; this.OkButton.Size = new System.Drawing.Size(75, 23); this.OkButton.TabIndex = 1; this.OkButton.Text = "&OK"; this.OkButton.UseVisualStyleBackColor = true; // // InputCancelButton // this.InputCancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.InputCancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.InputCancelButton.Location = new System.Drawing.Point(292, 13); this.InputCancelButton.Name = "InputCancelButton"; this.InputCancelButton.Size = new System.Drawing.Size(75, 23); this.InputCancelButton.TabIndex = 2; this.InputCancelButton.Text = "&Cancel"; this.InputCancelButton.UseVisualStyleBackColor = true; // // MessageLabel // this.MessageLabel.AutoSize = true; this.MessageLabel.Location = new System.Drawing.Point(75, 31); this.MessageLabel.Name = "MessageLabel"; this.MessageLabel.Size = new System.Drawing.Size(34, 13); this.MessageLabel.TabIndex = 3; this.MessageLabel.Text = "Input:"; // // panel1 // this.panel1.BackColor = System.Drawing.SystemColors.Control; this.panel1.Controls.Add(this.OkButton); this.panel1.Controls.Add(this.InputCancelButton); this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom; this.panel1.Location = new System.Drawing.Point(0, 84); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(379, 49); this.panel1.TabIndex = 5; // // MessageIconPictureBox // this.MessageIconPictureBox.Location = new System.Drawing.Point(25, 41); this.MessageIconPictureBox.Name = "MessageIconPictureBox"; this.MessageIconPictureBox.Size = new System.Drawing.Size(32, 32); this.MessageIconPictureBox.TabIndex = 4; this.MessageIconPictureBox.TabStop = false; // // InputTextBox // this.InputTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.InputTextBox.Location = new System.Drawing.Point(78, 55); this.InputTextBox.Name = "InputTextBox"; this.InputTextBox.PasswordChar = '●'; this.InputTextBox.Size = new System.Drawing.Size(289, 20); this.InputTextBox.TabIndex = 1; this.InputTextBox.TextChanged += new System.EventHandler(this.InputTextBox_TextChanged); // // InputDialog // this.AcceptButton = this.OkButton; this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.SystemColors.Control; this.CancelButton = this.InputCancelButton; this.ClientSize = new System.Drawing.Size(379, 133); this.Controls.Add(this.InputTextBox); this.Controls.Add(this.panel1); this.Controls.Add(this.MessageIconPictureBox); this.Controls.Add(this.MessageLabel); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "InputDialog"; this.ShowInTaskbar = false; this.Text = "Unlock private key"; this.Load += new System.EventHandler(this.InputDialog_Load); this.panel1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.MessageIconPictureBox)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Button OkButton; private System.Windows.Forms.Button InputCancelButton; private System.Windows.Forms.Label MessageLabel; private System.Windows.Forms.PictureBox MessageIconPictureBox; private System.Windows.Forms.Panel panel1; private System.Windows.Forms.TextBox InputTextBox; } }