12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
-
- namespace Metis.AutoAnalysis
- {
- partial class AddUser
- {
- /// <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.txbName = new System.Windows.Forms.TextBox();
- this.btnOK = new System.Windows.Forms.Button();
- this.btnCancel = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // txbName
- //
- this.txbName.Dock = System.Windows.Forms.DockStyle.Top;
- this.txbName.Location = new System.Drawing.Point(24, 12);
- this.txbName.Name = "txbName";
- this.txbName.Size = new System.Drawing.Size(258, 21);
- this.txbName.TabIndex = 0;
- //
- // btnOK
- //
- this.btnOK.Dock = System.Windows.Forms.DockStyle.Left;
- this.btnOK.Location = new System.Drawing.Point(24, 33);
- this.btnOK.Name = "btnOK";
- this.btnOK.Size = new System.Drawing.Size(75, 30);
- this.btnOK.TabIndex = 1;
- this.btnOK.Text = "OK";
- this.btnOK.UseVisualStyleBackColor = true;
- this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
- //
- // btnCancel
- //
- this.btnCancel.Dock = System.Windows.Forms.DockStyle.Right;
- this.btnCancel.Location = new System.Drawing.Point(207, 33);
- this.btnCancel.Name = "btnCancel";
- this.btnCancel.Size = new System.Drawing.Size(75, 30);
- this.btnCancel.TabIndex = 2;
- this.btnCancel.Text = "Cancel";
- this.btnCancel.UseVisualStyleBackColor = true;
- this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
- //
- // AddUser
- //
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
- this.BackColor = System.Drawing.SystemColors.ControlDark;
- this.ClientSize = new System.Drawing.Size(306, 75);
- this.Controls.Add(this.btnCancel);
- this.Controls.Add(this.btnOK);
- this.Controls.Add(this.txbName);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
- this.Name = "AddUser";
- this.Padding = new System.Windows.Forms.Padding(24, 12, 24, 12);
- this.ShowIcon = false;
- this.ShowInTaskbar = false;
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
- this.Text = "AddUser";
- this.TopMost = true;
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.TextBox txbName;
- private System.Windows.Forms.Button btnOK;
- private System.Windows.Forms.Button btnCancel;
- }
- }
|