FrmBigListViewer.Designer.cs 4.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. namespace BooksManageSystem
  2. {
  3. partial class FrmBigListViewer
  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.listBox1 = new System.Windows.Forms.ListBox();
  29. this.button1 = new System.Windows.Forms.Button();
  30. this.SuspendLayout();
  31. //
  32. // listBox1
  33. //
  34. this.listBox1.Font = new System.Drawing.Font("微软雅黑", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  35. this.listBox1.FormattingEnabled = true;
  36. this.listBox1.ItemHeight = 20;
  37. this.listBox1.Location = new System.Drawing.Point(14, 17);
  38. this.listBox1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  39. this.listBox1.Name = "listBox1";
  40. this.listBox1.Size = new System.Drawing.Size(269, 484);
  41. this.listBox1.TabIndex = 0;
  42. this.listBox1.SelectedIndexChanged += new System.EventHandler(this.listBox1_SelectedIndexChanged);
  43. this.listBox1.DoubleClick += new System.EventHandler(this.listBox1_DoubleClick);
  44. //
  45. // button1
  46. //
  47. this.button1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(22)))), ((int)(((byte)(108)))), ((int)(((byte)(123)))));
  48. this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  49. this.button1.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  50. this.button1.ForeColor = System.Drawing.Color.White;
  51. this.button1.Location = new System.Drawing.Point(14, 509);
  52. this.button1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  53. this.button1.Name = "button1";
  54. this.button1.Size = new System.Drawing.Size(269, 36);
  55. this.button1.TabIndex = 1;
  56. this.button1.Text = "查看详细书单";
  57. this.button1.UseVisualStyleBackColor = false;
  58. this.button1.Click += new System.EventHandler(this.button1_Click);
  59. //
  60. // FrmBigListViewer
  61. //
  62. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
  63. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  64. this.ClientSize = new System.Drawing.Size(301, 562);
  65. this.Controls.Add(this.button1);
  66. this.Controls.Add(this.listBox1);
  67. this.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  68. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  69. this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  70. this.MaximizeBox = false;
  71. this.MinimizeBox = false;
  72. this.Name = "FrmBigListViewer";
  73. this.Text = "购书单查询";
  74. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmBigListViewer_FormClosing);
  75. this.Load += new System.EventHandler(this.FrmBigListViewer_Load);
  76. this.ResumeLayout(false);
  77. }
  78. #endregion
  79. private System.Windows.Forms.ListBox listBox1;
  80. private System.Windows.Forms.Button button1;
  81. }
  82. }