Login.Designer.cs 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. namespace UAS_DeviceMonitor
  2. {
  3. partial class Login
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.UserName = new DevExpress.XtraEditors.TextEdit();
  29. this.PassWord = new DevExpress.XtraEditors.TextEdit();
  30. this.UserName_label = new DevExpress.XtraEditors.LabelControl();
  31. this.PassWord_label = new DevExpress.XtraEditors.LabelControl();
  32. this.LoginButton = new DevExpress.XtraEditors.SimpleButton();
  33. ((System.ComponentModel.ISupportInitialize)(this.UserName.Properties)).BeginInit();
  34. ((System.ComponentModel.ISupportInitialize)(this.PassWord.Properties)).BeginInit();
  35. this.SuspendLayout();
  36. //
  37. // UserName
  38. //
  39. this.UserName.Location = new System.Drawing.Point(144, 66);
  40. this.UserName.Name = "UserName";
  41. this.UserName.Properties.Appearance.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  42. this.UserName.Properties.Appearance.Options.UseFont = true;
  43. this.UserName.Size = new System.Drawing.Size(145, 28);
  44. this.UserName.TabIndex = 0;
  45. //
  46. // PassWord
  47. //
  48. this.PassWord.Location = new System.Drawing.Point(144, 114);
  49. this.PassWord.Name = "PassWord";
  50. this.PassWord.Properties.Appearance.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  51. this.PassWord.Properties.Appearance.Options.UseFont = true;
  52. this.PassWord.Properties.PasswordChar = '*';
  53. this.PassWord.Size = new System.Drawing.Size(145, 28);
  54. this.PassWord.TabIndex = 1;
  55. this.PassWord.KeyDown += new System.Windows.Forms.KeyEventHandler(this.PassWord_KeyDown);
  56. //
  57. // UserName_label
  58. //
  59. this.UserName_label.Appearance.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  60. this.UserName_label.Location = new System.Drawing.Point(71, 69);
  61. this.UserName_label.Name = "UserName_label";
  62. this.UserName_label.Size = new System.Drawing.Size(48, 21);
  63. this.UserName_label.TabIndex = 2;
  64. this.UserName_label.Text = "用户名";
  65. //
  66. // PassWord_label
  67. //
  68. this.PassWord_label.Appearance.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  69. this.PassWord_label.Location = new System.Drawing.Point(87, 117);
  70. this.PassWord_label.Name = "PassWord_label";
  71. this.PassWord_label.Size = new System.Drawing.Size(32, 21);
  72. this.PassWord_label.TabIndex = 3;
  73. this.PassWord_label.Text = "密码";
  74. //
  75. // LoginButton
  76. //
  77. this.LoginButton.Location = new System.Drawing.Point(171, 184);
  78. this.LoginButton.Name = "LoginButton";
  79. this.LoginButton.Size = new System.Drawing.Size(75, 23);
  80. this.LoginButton.TabIndex = 4;
  81. this.LoginButton.Text = "登录";
  82. this.LoginButton.Click += new System.EventHandler(this.LoginButton_Click);
  83. //
  84. // Login
  85. //
  86. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
  87. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  88. this.ClientSize = new System.Drawing.Size(414, 245);
  89. this.Controls.Add(this.LoginButton);
  90. this.Controls.Add(this.PassWord_label);
  91. this.Controls.Add(this.UserName_label);
  92. this.Controls.Add(this.PassWord);
  93. this.Controls.Add(this.UserName);
  94. this.FormBorderEffect = DevExpress.XtraEditors.FormBorderEffect.None;
  95. this.Name = "Login";
  96. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  97. this.Text = " 设备管理平台";
  98. this.Load += new System.EventHandler(this.Login_Load);
  99. ((System.ComponentModel.ISupportInitialize)(this.UserName.Properties)).EndInit();
  100. ((System.ComponentModel.ISupportInitialize)(this.PassWord.Properties)).EndInit();
  101. this.ResumeLayout(false);
  102. this.PerformLayout();
  103. }
  104. #endregion
  105. private DevExpress.XtraEditors.TextEdit UserName;
  106. private DevExpress.XtraEditors.TextEdit PassWord;
  107. private DevExpress.XtraEditors.LabelControl UserName_label;
  108. private DevExpress.XtraEditors.LabelControl PassWord_label;
  109. private DevExpress.XtraEditors.SimpleButton LoginButton;
  110. }
  111. }