FingerCheck.Designer.cs 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. namespace IntelligentControlForsx.ChildForms
  2. {
  3. partial class FingerCheck
  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.components = new System.ComponentModel.Container();
  29. this.panel1 = new System.Windows.Forms.Panel();
  30. this.lblInfo = new System.Windows.Forms.Label();
  31. this.lblClose = new System.Windows.Forms.Label();
  32. this.timer1 = new System.Windows.Forms.Timer(this.components);
  33. this.picFinger = new System.Windows.Forms.PictureBox();
  34. this.panel1.SuspendLayout();
  35. ((System.ComponentModel.ISupportInitialize)(this.picFinger)).BeginInit();
  36. this.SuspendLayout();
  37. //
  38. // panel1
  39. //
  40. this.panel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(34)))), ((int)(((byte)(200)))), ((int)(((byte)(187)))));
  41. this.panel1.Controls.Add(this.lblInfo);
  42. this.panel1.Location = new System.Drawing.Point(2, 211);
  43. this.panel1.Name = "panel1";
  44. this.panel1.Size = new System.Drawing.Size(156, 31);
  45. this.panel1.TabIndex = 2;
  46. //
  47. // lblInfo
  48. //
  49. this.lblInfo.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  50. this.lblInfo.ForeColor = System.Drawing.Color.Firebrick;
  51. this.lblInfo.Location = new System.Drawing.Point(2, 7);
  52. this.lblInfo.Name = "lblInfo";
  53. this.lblInfo.Size = new System.Drawing.Size(154, 17);
  54. this.lblInfo.TabIndex = 0;
  55. this.lblInfo.Text = "请验证指纹";
  56. this.lblInfo.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  57. //
  58. // lblClose
  59. //
  60. this.lblClose.BackColor = System.Drawing.Color.White;
  61. this.lblClose.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  62. this.lblClose.ForeColor = System.Drawing.Color.OrangeRed;
  63. this.lblClose.Location = new System.Drawing.Point(141, 3);
  64. this.lblClose.Margin = new System.Windows.Forms.Padding(0);
  65. this.lblClose.Name = "lblClose";
  66. this.lblClose.Size = new System.Drawing.Size(15, 15);
  67. this.lblClose.TabIndex = 3;
  68. this.lblClose.Text = "X";
  69. this.lblClose.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  70. this.lblClose.Click += new System.EventHandler(this.lblClose_Click);
  71. //
  72. // timer1
  73. //
  74. this.timer1.Enabled = true;
  75. this.timer1.Interval = 1000;
  76. this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
  77. //
  78. // picFinger
  79. //
  80. this.picFinger.BackColor = System.Drawing.Color.White;
  81. this.picFinger.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  82. this.picFinger.Image = global::IntelligentControlForsx.Properties.Resources.finger;
  83. this.picFinger.Location = new System.Drawing.Point(2, 2);
  84. this.picFinger.Name = "picFinger";
  85. this.picFinger.Size = new System.Drawing.Size(156, 209);
  86. this.picFinger.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  87. this.picFinger.TabIndex = 1;
  88. this.picFinger.TabStop = false;
  89. //
  90. // FingerCheck
  91. //
  92. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  93. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  94. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(34)))), ((int)(((byte)(200)))), ((int)(((byte)(187)))));
  95. this.ClientSize = new System.Drawing.Size(160, 244);
  96. this.Controls.Add(this.lblClose);
  97. this.Controls.Add(this.panel1);
  98. this.Controls.Add(this.picFinger);
  99. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  100. this.Name = "FingerCheck";
  101. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  102. this.Text = "FingerCheck";
  103. this.Load += new System.EventHandler(this.FingerCheck_Load);
  104. this.panel1.ResumeLayout(false);
  105. ((System.ComponentModel.ISupportInitialize)(this.picFinger)).EndInit();
  106. this.ResumeLayout(false);
  107. }
  108. #endregion
  109. private System.Windows.Forms.PictureBox picFinger;
  110. private System.Windows.Forms.Panel panel1;
  111. private System.Windows.Forms.Label lblInfo;
  112. private System.Windows.Forms.Label lblClose;
  113. private System.Windows.Forms.Timer timer1;
  114. }
  115. }