InputBox.cs
上传用户:yongjiajia
上传日期:2021-01-30
资源大小:686k
文件大小:3k
开发平台:

ASP/ASPX

  1. using System;
  2. using System.Drawing;
  3. using System.Collections;
  4. using System.ComponentModel;
  5. using System.Windows.Forms;
  6. namespace 医院管理系统
  7. {
  8. /// <summary>
  9. /// InputBox 的摘要说明。
  10. /// </summary>
  11. public class InputBox : System.Windows.Forms.Form
  12. {
  13. public string result="";//默认为空
  14. private System.Windows.Forms.Button btnOK;
  15. public System.Windows.Forms.TextBox txt1;
  16. public System.Windows.Forms.Label label1;
  17. /// <summary>
  18. /// 必需的设计器变量。
  19. /// </summary>
  20. private System.ComponentModel.Container components = null;
  21. public InputBox()
  22. {
  23. //
  24. // Windows 窗体设计器支持所必需的
  25. //
  26. InitializeComponent();
  27. //
  28. // TODO: 在 InitializeComponent 调用后添加任何构造函数代码
  29. //
  30. }
  31. /// <summary>
  32. /// 清理所有正在使用的资源。
  33. /// </summary>
  34. protected override void Dispose( bool disposing )
  35. {
  36. if( disposing )
  37. {
  38. if(components != null)
  39. {
  40. components.Dispose();
  41. }
  42. }
  43. base.Dispose( disposing );
  44. }
  45. #region Windows 窗体设计器生成的代码
  46. /// <summary>
  47. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  48. /// 此方法的内容。
  49. /// </summary>
  50. private void InitializeComponent()
  51. {
  52. this.btnOK = new System.Windows.Forms.Button();
  53. this.txt1 = new System.Windows.Forms.TextBox();
  54. this.label1 = new System.Windows.Forms.Label();
  55. this.SuspendLayout();
  56. // 
  57. // btnOK
  58. // 
  59. this.btnOK.Location = new System.Drawing.Point(32, 40);
  60. this.btnOK.Name = "btnOK";
  61. this.btnOK.TabIndex = 0;
  62. this.btnOK.Text = "确定";
  63. this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
  64. // 
  65. // txt1
  66. // 
  67. this.txt1.Location = new System.Drawing.Point(128, 40);
  68. this.txt1.Name = "txt1";
  69. this.txt1.Size = new System.Drawing.Size(320, 21);
  70. this.txt1.TabIndex = 1;
  71. this.txt1.Text = "";
  72. // 
  73. // label1
  74. // 
  75. this.label1.Location = new System.Drawing.Point(128, 24);
  76. this.label1.Name = "label1";
  77. this.label1.Size = new System.Drawing.Size(312, 16);
  78. this.label1.TabIndex = 2;
  79. this.label1.Text = "label1";
  80. // 
  81. // InputBox
  82. // 
  83. this.AcceptButton = this.btnOK;
  84. this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
  85. this.ClientSize = new System.Drawing.Size(528, 93);
  86. this.Controls.Add(this.label1);
  87. this.Controls.Add(this.txt1);
  88. this.Controls.Add(this.btnOK);
  89. this.Name = "InputBox";
  90. this.Text = "InputBox";
  91. this.ResumeLayout(false);
  92. }
  93. #endregion
  94. private void btnOK_Click(object sender, System.EventArgs e)//返回输入的值
  95. {
  96. this.result=txt1.Text.Trim();
  97. this.Close();
  98. }
  99. }
  100. }