Form_Welcome.cs
上传用户:chinapurv
上传日期:2014-03-12
资源大小:4870k
文件大小:4k
源码类别:

教育系统应用

开发平台:

C#

  1. using System;
  2. using System.Drawing;
  3. using System.Collections;
  4. using System.ComponentModel;
  5. using System.Windows.Forms;
  6. using System.Data.OleDb;
  7. namespace 图书管理系统
  8. {
  9. /// <summary>
  10. /// Form_Welcome 的摘要说明。
  11. /// </summary>
  12. public class Form_Welcome : System.Windows.Forms.Form
  13. {
  14. private System.Windows.Forms.Label label1;
  15. private System.Windows.Forms.Label label2;
  16. private System.Windows.Forms.TextBox textPassword;
  17. private System.Windows.Forms.Button butsubmit;
  18. /// <summary>
  19. /// 必需的设计器变量。
  20. /// </summary>
  21. private System.ComponentModel.Container components = null;
  22. public Form_Welcome()
  23. {
  24. //
  25. // Windows 窗体设计器支持所必需的
  26. //
  27. InitializeComponent();
  28. //
  29. // TODO: 在 InitializeComponent 调用后添加任何构造函数代码
  30. //
  31. }
  32. /// <summary>
  33. /// 清理所有正在使用的资源。
  34. /// </summary>
  35. protected override void Dispose( bool disposing )
  36. {
  37. if( disposing )
  38. {
  39. if(components != null)
  40. {
  41. components.Dispose();
  42. }
  43. }
  44. base.Dispose( disposing );
  45. }
  46. #region Windows 窗体设计器生成的代码
  47. /// <summary>
  48. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  49. /// 此方法的内容。
  50. /// </summary>
  51. private void InitializeComponent()
  52. {
  53. System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Form_Welcome));
  54. this.label1 = new System.Windows.Forms.Label();
  55. this.label2 = new System.Windows.Forms.Label();
  56. this.textPassword = new System.Windows.Forms.TextBox();
  57. this.butsubmit = new System.Windows.Forms.Button();
  58. this.SuspendLayout();
  59. // 
  60. // label1
  61. // 
  62. this.label1.BackColor = System.Drawing.Color.Transparent;
  63. this.label1.Font = new System.Drawing.Font("宋体", 48F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
  64. this.label1.Location = new System.Drawing.Point(12, 15);
  65. this.label1.Name = "label1";
  66. this.label1.Size = new System.Drawing.Size(448, 313);
  67. this.label1.TabIndex = 1;
  68. this.label1.Text = "欢迎使用Smart Wholesaler  购书系统";
  69. this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  70. // 
  71. // label2
  72. // 
  73. this.label2.BackColor = System.Drawing.Color.Transparent;
  74. this.label2.Location = new System.Drawing.Point(80, 352);
  75. this.label2.Name = "label2";
  76. this.label2.Size = new System.Drawing.Size(64, 16);
  77. this.label2.TabIndex = 2;
  78. this.label2.Text = "登录密码:";
  79. // 
  80. // textPassword
  81. // 
  82. this.textPassword.Location = new System.Drawing.Point(144, 344);
  83. this.textPassword.Name = "textPassword";
  84. this.textPassword.PasswordChar = '*';
  85. this.textPassword.Size = new System.Drawing.Size(184, 21);
  86. this.textPassword.TabIndex = 3;
  87. this.textPassword.Text = "";
  88. // 
  89. // butsubmit
  90. // 
  91. this.butsubmit.BackColor = System.Drawing.Color.Transparent;
  92. this.butsubmit.Location = new System.Drawing.Point(344, 344);
  93. this.butsubmit.Name = "butsubmit";
  94. this.butsubmit.Size = new System.Drawing.Size(48, 24);
  95. this.butsubmit.TabIndex = 4;
  96. this.butsubmit.Text = "登录";
  97. this.butsubmit.Click += new System.EventHandler(this.butsubmit_Click);
  98. // 
  99. // Form_Welcome
  100. // 
  101. this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
  102. this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
  103. this.ClientSize = new System.Drawing.Size(472, 382);
  104. this.Controls.Add(this.butsubmit);
  105. this.Controls.Add(this.textPassword);
  106. this.Controls.Add(this.label2);
  107. this.Controls.Add(this.label1);
  108. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  109. this.Name = "Form_Welcome";
  110. this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
  111. this.Text = "Form_Welcome";
  112. this.ResumeLayout(false);
  113. }
  114. #endregion
  115. static public bool submit=false;
  116. private void butsubmit_Click(object sender, System.EventArgs e)
  117. {
  118. if(textPassword.Text=="123")
  119. {
  120. submit=true;
  121. MessageBox.Show("恭喜,登录成功!","提示");
  122. label2.Visible=false;
  123. textPassword.Visible=false;
  124. butsubmit.Visible=false;
  125. }
  126. else
  127. {
  128. textPassword.Text="";
  129. MessageBox.Show("密码错误,无法登录系统!","提示");
  130. textPassword.Focus();
  131. }
  132. }
  133. }
  134. }