Form1.Designer.cs 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. namespace ReadICCardFormsApplication
  2. {
  3. partial class Form1
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 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 窗体设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
  30. this.button2 = new System.Windows.Forms.Button();
  31. this.button1 = new System.Windows.Forms.Button();
  32. this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
  33. this.SuspendLayout();
  34. //
  35. // button2
  36. //
  37. this.button2.Enabled = false;
  38. this.button2.Location = new System.Drawing.Point(126, 84);
  39. this.button2.Name = "button2";
  40. this.button2.Size = new System.Drawing.Size(156, 66);
  41. this.button2.TabIndex = 0;
  42. this.button2.Text = "读取卡号";
  43. this.button2.UseVisualStyleBackColor = true;
  44. this.button2.Click += new System.EventHandler(this.button2_Click);
  45. //
  46. // button1
  47. //
  48. this.button1.Location = new System.Drawing.Point(313, 84);
  49. this.button1.Name = "button1";
  50. this.button1.Size = new System.Drawing.Size(131, 66);
  51. this.button1.TabIndex = 3;
  52. this.button1.Text = "读取卡信息";
  53. this.button1.UseVisualStyleBackColor = true;
  54. this.button1.Click += new System.EventHandler(this.button1_Click);
  55. //
  56. // notifyIcon1
  57. //
  58. this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
  59. this.notifyIcon1.Text = "notifyIcon1";
  60. this.notifyIcon1.DoubleClick += new System.EventHandler(this.notifyIcon1_DoubleClick);
  61. //
  62. // Form1
  63. //
  64. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  65. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  66. this.ClientSize = new System.Drawing.Size(594, 261);
  67. this.Controls.Add(this.button1);
  68. this.Controls.Add(this.button2);
  69. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  70. this.MaximizeBox = false;
  71. this.Name = "Form1";
  72. this.Text = "读卡服务";
  73. this.Resize += new System.EventHandler(this.Form1_Resize);
  74. this.ResumeLayout(false);
  75. }
  76. #endregion
  77. private System.Windows.Forms.Button button2;
  78. private System.Windows.Forms.Button button1;
  79. private System.Windows.Forms.NotifyIcon notifyIcon1;
  80. }
  81. }