Form1.Designer.cs 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. namespace WindowsFormsImageList
  2. {
  3. partial class Form1
  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.imageList1 = new System.Windows.Forms.ImageList(this.components);
  30. this.groupBox1 = new System.Windows.Forms.GroupBox();
  31. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  32. this.button1 = new System.Windows.Forms.Button();
  33. this.button2 = new System.Windows.Forms.Button();
  34. this.groupBox1.SuspendLayout();
  35. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  36. this.SuspendLayout();
  37. //
  38. // imageList1
  39. //
  40. this.imageList1.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
  41. this.imageList1.ImageSize = new System.Drawing.Size(16, 16);
  42. this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
  43. //
  44. // groupBox1
  45. //
  46. this.groupBox1.Controls.Add(this.pictureBox1);
  47. this.groupBox1.Location = new System.Drawing.Point(0, 0);
  48. this.groupBox1.Name = "groupBox1";
  49. this.groupBox1.Size = new System.Drawing.Size(463, 233);
  50. this.groupBox1.TabIndex = 0;
  51. this.groupBox1.TabStop = false;
  52. this.groupBox1.Text = "显示图像";
  53. //
  54. // pictureBox1
  55. //
  56. this.pictureBox1.Location = new System.Drawing.Point(24, 24);
  57. this.pictureBox1.Name = "pictureBox1";
  58. this.pictureBox1.Size = new System.Drawing.Size(142, 74);
  59. this.pictureBox1.TabIndex = 0;
  60. this.pictureBox1.TabStop = false;
  61. //
  62. // button1
  63. //
  64. this.button1.Location = new System.Drawing.Point(53, 253);
  65. this.button1.Name = "button1";
  66. this.button1.Size = new System.Drawing.Size(95, 23);
  67. this.button1.TabIndex = 1;
  68. this.button1.Text = "显示图像1";
  69. this.button1.UseVisualStyleBackColor = true;
  70. this.button1.Click += new System.EventHandler(this.button1_Click);
  71. //
  72. // button2
  73. //
  74. this.button2.Location = new System.Drawing.Point(284, 252);
  75. this.button2.Name = "button2";
  76. this.button2.Size = new System.Drawing.Size(94, 23);
  77. this.button2.TabIndex = 2;
  78. this.button2.Text = "显示图像2";
  79. this.button2.UseVisualStyleBackColor = true;
  80. this.button2.Click += new System.EventHandler(this.button2_Click);
  81. //
  82. // Form1
  83. //
  84. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  85. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  86. this.ClientSize = new System.Drawing.Size(466, 310);
  87. this.Controls.Add(this.button2);
  88. this.Controls.Add(this.button1);
  89. this.Controls.Add(this.groupBox1);
  90. this.Name = "Form1";
  91. this.Text = "Form1";
  92. this.Load += new System.EventHandler(this.Form1_Load);
  93. this.groupBox1.ResumeLayout(false);
  94. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  95. this.ResumeLayout(false);
  96. }
  97. #endregion
  98. private System.Windows.Forms.ImageList imageList1;
  99. private System.Windows.Forms.GroupBox groupBox1;
  100. private System.Windows.Forms.PictureBox pictureBox1;
  101. private System.Windows.Forms.Button button1;
  102. private System.Windows.Forms.Button button2;
  103. }
  104. }