CComboBox.designer.cs 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. namespace Controls
  2. {
  3. partial class CComboBox
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CComboBox));
  29. this.cbx_item = new System.Windows.Forms.ComboBox();
  30. this.lbl_line = new System.Windows.Forms.Label();
  31. this.btn_showItem = new System.Windows.Forms.Button();
  32. this.SuspendLayout();
  33. //
  34. // cbx_item
  35. //
  36. this.cbx_item.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  37. | System.Windows.Forms.AnchorStyles.Right)));
  38. this.cbx_item.BackColor = System.Drawing.Color.White;
  39. this.cbx_item.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  40. this.cbx_item.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  41. this.cbx_item.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
  42. this.cbx_item.FormattingEnabled = true;
  43. this.cbx_item.Location = new System.Drawing.Point(2, -3);
  44. this.cbx_item.Margin = new System.Windows.Forms.Padding(0);
  45. this.cbx_item.Name = "cbx_item";
  46. this.cbx_item.Size = new System.Drawing.Size(120, 25);
  47. this.cbx_item.TabIndex = 10;
  48. this.cbx_item.TabStop = false;
  49. this.cbx_item.SelectedIndexChanged += new System.EventHandler(this.cbx_item_SelectedIndexChanged);
  50. //
  51. // lbl_line
  52. //
  53. this.lbl_line.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  54. | System.Windows.Forms.AnchorStyles.Right)));
  55. this.lbl_line.BackColor = System.Drawing.Color.Gray;
  56. this.lbl_line.Location = new System.Drawing.Point(3, 20);
  57. this.lbl_line.Name = "lbl_line";
  58. this.lbl_line.Size = new System.Drawing.Size(120, 1);
  59. this.lbl_line.TabIndex = 11;
  60. //
  61. // btn_showItem
  62. //
  63. this.btn_showItem.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  64. this.btn_showItem.BackColor = System.Drawing.Color.White;
  65. this.btn_showItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  66. this.btn_showItem.FlatAppearance.BorderColor = System.Drawing.Color.White;
  67. this.btn_showItem.FlatAppearance.BorderSize = 0;
  68. this.btn_showItem.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Gray;
  69. this.btn_showItem.FlatAppearance.MouseOverBackColor = System.Drawing.Color.DarkGray;
  70. this.btn_showItem.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  71. this.btn_showItem.Image = ((System.Drawing.Image)(resources.GetObject("btn_showItem.Image")));
  72. this.btn_showItem.ImageAlign = System.Drawing.ContentAlignment.BottomCenter;
  73. this.btn_showItem.Location = new System.Drawing.Point(103, -1);
  74. this.btn_showItem.Margin = new System.Windows.Forms.Padding(0);
  75. this.btn_showItem.Name = "btn_showItem";
  76. this.btn_showItem.Size = new System.Drawing.Size(17, 20);
  77. this.btn_showItem.TabIndex = 12;
  78. this.btn_showItem.UseVisualStyleBackColor = false;
  79. this.btn_showItem.Click += new System.EventHandler(this.btn_showItem_Click);
  80. //
  81. // CComboBox
  82. //
  83. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
  84. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  85. this.BackColor = System.Drawing.Color.White;
  86. this.Controls.Add(this.btn_showItem);
  87. this.Controls.Add(this.lbl_line);
  88. this.Controls.Add(this.cbx_item);
  89. this.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  90. this.Margin = new System.Windows.Forms.Padding(0);
  91. this.Name = "CComboBox";
  92. this.Size = new System.Drawing.Size(120, 22);
  93. this.Enter += new System.EventHandler(this.ComboBox_Enter);
  94. this.Leave += new System.EventHandler(this.ComboBox_Leave);
  95. this.ResumeLayout(false);
  96. }
  97. #endregion
  98. private System.Windows.Forms.ComboBox cbx_item;
  99. private System.Windows.Forms.Label lbl_line;
  100. private System.Windows.Forms.Button btn_showItem;
  101. }
  102. }