BookSelector.Designer.cs 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. namespace BooksManageSystem
  2. {
  3. partial class BookSelector
  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.comboBox1 = new System.Windows.Forms.ComboBox();
  29. this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
  30. this.btn_dispose = new System.Windows.Forms.Button();
  31. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
  32. this.SuspendLayout();
  33. //
  34. // comboBox1
  35. //
  36. this.comboBox1.BackColor = System.Drawing.SystemColors.Window;
  37. this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  38. this.comboBox1.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  39. this.comboBox1.FormattingEnabled = true;
  40. this.comboBox1.ItemHeight = 17;
  41. this.comboBox1.Location = new System.Drawing.Point(3, 3);
  42. this.comboBox1.Name = "comboBox1";
  43. this.comboBox1.Size = new System.Drawing.Size(311, 25);
  44. this.comboBox1.TabIndex = 1;
  45. this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
  46. this.comboBox1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.comboBox1_MouseClick);
  47. this.comboBox1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.comboBox1_MouseDown);
  48. //
  49. // numericUpDown1
  50. //
  51. this.numericUpDown1.BackColor = System.Drawing.SystemColors.Control;
  52. this.numericUpDown1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  53. this.numericUpDown1.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  54. this.numericUpDown1.Location = new System.Drawing.Point(320, 4);
  55. this.numericUpDown1.Minimum = new decimal(new int[] {
  56. 1,
  57. 0,
  58. 0,
  59. 0});
  60. this.numericUpDown1.Name = "numericUpDown1";
  61. this.numericUpDown1.Size = new System.Drawing.Size(69, 23);
  62. this.numericUpDown1.TabIndex = 2;
  63. this.numericUpDown1.Value = new decimal(new int[] {
  64. 1,
  65. 0,
  66. 0,
  67. 0});
  68. //
  69. // btn_dispose
  70. //
  71. this.btn_dispose.BackColor = System.Drawing.Color.Red;
  72. this.btn_dispose.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  73. this.btn_dispose.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  74. this.btn_dispose.ForeColor = System.Drawing.SystemColors.Window;
  75. this.btn_dispose.Location = new System.Drawing.Point(722, 2);
  76. this.btn_dispose.Name = "btn_dispose";
  77. this.btn_dispose.Size = new System.Drawing.Size(25, 25);
  78. this.btn_dispose.TabIndex = 0;
  79. this.btn_dispose.Text = "删";
  80. this.btn_dispose.UseVisualStyleBackColor = false;
  81. this.btn_dispose.Click += new System.EventHandler(this.btn_dispose_Click);
  82. //
  83. // BookSelector
  84. //
  85. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  86. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  87. this.Controls.Add(this.btn_dispose);
  88. this.Controls.Add(this.numericUpDown1);
  89. this.Controls.Add(this.comboBox1);
  90. this.Name = "BookSelector";
  91. this.Size = new System.Drawing.Size(750, 31);
  92. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
  93. this.ResumeLayout(false);
  94. }
  95. #endregion
  96. private System.Windows.Forms.ComboBox comboBox1;
  97. private System.Windows.Forms.NumericUpDown numericUpDown1;
  98. private System.Windows.Forms.Button btn_dispose;
  99. }
  100. }