AddUser.Designer.cs 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. 
  2. namespace Metis.AutoAnalysis
  3. {
  4. partial class AddUser
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  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. #region Windows Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.txbName = new System.Windows.Forms.TextBox();
  30. this.btnOK = new System.Windows.Forms.Button();
  31. this.btnCancel = new System.Windows.Forms.Button();
  32. this.SuspendLayout();
  33. //
  34. // txbName
  35. //
  36. this.txbName.Dock = System.Windows.Forms.DockStyle.Top;
  37. this.txbName.Location = new System.Drawing.Point(24, 12);
  38. this.txbName.Name = "txbName";
  39. this.txbName.Size = new System.Drawing.Size(258, 21);
  40. this.txbName.TabIndex = 0;
  41. //
  42. // btnOK
  43. //
  44. this.btnOK.Dock = System.Windows.Forms.DockStyle.Left;
  45. this.btnOK.Location = new System.Drawing.Point(24, 33);
  46. this.btnOK.Name = "btnOK";
  47. this.btnOK.Size = new System.Drawing.Size(75, 30);
  48. this.btnOK.TabIndex = 1;
  49. this.btnOK.Text = "OK";
  50. this.btnOK.UseVisualStyleBackColor = true;
  51. this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
  52. //
  53. // btnCancel
  54. //
  55. this.btnCancel.Dock = System.Windows.Forms.DockStyle.Right;
  56. this.btnCancel.Location = new System.Drawing.Point(207, 33);
  57. this.btnCancel.Name = "btnCancel";
  58. this.btnCancel.Size = new System.Drawing.Size(75, 30);
  59. this.btnCancel.TabIndex = 2;
  60. this.btnCancel.Text = "Cancel";
  61. this.btnCancel.UseVisualStyleBackColor = true;
  62. this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
  63. //
  64. // AddUser
  65. //
  66. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  67. this.BackColor = System.Drawing.SystemColors.ControlDark;
  68. this.ClientSize = new System.Drawing.Size(306, 75);
  69. this.Controls.Add(this.btnCancel);
  70. this.Controls.Add(this.btnOK);
  71. this.Controls.Add(this.txbName);
  72. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  73. this.Name = "AddUser";
  74. this.Padding = new System.Windows.Forms.Padding(24, 12, 24, 12);
  75. this.ShowIcon = false;
  76. this.ShowInTaskbar = false;
  77. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  78. this.Text = "AddUser";
  79. this.TopMost = true;
  80. this.ResumeLayout(false);
  81. this.PerformLayout();
  82. }
  83. #endregion
  84. private System.Windows.Forms.TextBox txbName;
  85. private System.Windows.Forms.Button btnOK;
  86. private System.Windows.Forms.Button btnCancel;
  87. }
  88. }