CNumeric.designer.cs 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. namespace Controls
  2. {
  3. partial class CNumeric
  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 组件设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.lbl_line = new System.Windows.Forms.Label();
  29. this.tbx_value = new System.Windows.Forms.TextBox();
  30. this.SuspendLayout();
  31. //
  32. // lbl_line
  33. //
  34. this.lbl_line.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
  35. this.lbl_line.BackColor = System.Drawing.Color.Gray;
  36. this.lbl_line.Location = new System.Drawing.Point(0, 20);
  37. this.lbl_line.Name = "lbl_line";
  38. this.lbl_line.Size = new System.Drawing.Size(120, 1);
  39. this.lbl_line.TabIndex = 8;
  40. //
  41. // tbx_value
  42. //
  43. this.tbx_value.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
  44. this.tbx_value.BorderStyle = System.Windows.Forms.BorderStyle.None;
  45. this.tbx_value.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
  46. this.tbx_value.Location = new System.Drawing.Point(3, 0);
  47. this.tbx_value.Name = "tbx_value";
  48. this.tbx_value.Size = new System.Drawing.Size(114, 16);
  49. this.tbx_value.TabIndex = 9;
  50. this.tbx_value.TextChanged += new System.EventHandler(this.tbx_value_TextChanged);
  51. this.tbx_value.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.tbx_value_KeyPress);
  52. //
  53. // CNumeric
  54. //
  55. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
  56. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  57. this.BackColor = System.Drawing.Color.White;
  58. this.Controls.Add(this.tbx_value);
  59. this.Controls.Add(this.lbl_line);
  60. this.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  61. this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  62. this.Name = "CNumeric";
  63. this.Size = new System.Drawing.Size(121, 22);
  64. this.Enter += new System.EventHandler(this.Numeric_Enter);
  65. this.Leave += new System.EventHandler(this.Numeric_Leave);
  66. this.ResumeLayout(false);
  67. this.PerformLayout();
  68. }
  69. #endregion
  70. private System.Windows.Forms.Label lbl_line;
  71. private System.Windows.Forms.TextBox tbx_value;
  72. }
  73. }