using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; namespace bcr2 { /// /// Summary description for Form1. /// public class ShowForm : System.Windows.Forms.Form { private System.Windows.Forms.PictureBox pictureBox1; private System.Windows.Forms.PictureBox pictureBox2; private System.Windows.Forms.PictureBox pictureBox3; /// /// Required designer variable. /// private System.ComponentModel.Container components = null; public ShowForm(Bitmap bm1, Bitmap bm2, Bitmap bm3) { // // Required for Windows Form Designer support // InitializeComponent(); // // TODO: Add any constructor code after InitializeComponent call // pictureBox1.Image = bm1; pictureBox2.Image = bm2; pictureBox3.Image = bm3; } /// /// Clean up any resources being used. /// protected override void Dispose( bool disposing ) { if( disposing ) { if(components != null) { components.Dispose(); } } base.Dispose( disposing ); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.pictureBox1 = new System.Windows.Forms.PictureBox(); this.pictureBox2 = new System.Windows.Forms.PictureBox(); this.pictureBox3 = new System.Windows.Forms.PictureBox(); this.SuspendLayout(); // // pictureBox1 // this.pictureBox1.Location = new System.Drawing.Point(72, 120); this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Size = new System.Drawing.Size(144, 144); this.pictureBox1.TabIndex = 0; this.pictureBox1.TabStop = false; // // pictureBox2 // this.pictureBox2.Location = new System.Drawing.Point(312, 216); this.pictureBox2.Name = "pictureBox2"; this.pictureBox2.Size = new System.Drawing.Size(152, 144); this.pictureBox2.TabIndex = 1; this.pictureBox2.TabStop = false; // // pictureBox3 // this.pictureBox3.Location = new System.Drawing.Point(312, 24); this.pictureBox3.Name = "pictureBox3"; this.pictureBox3.Size = new System.Drawing.Size(144, 136); this.pictureBox3.TabIndex = 3; this.pictureBox3.TabStop = false; // // ShowForm // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(520, 398); this.Controls.AddRange(new System.Windows.Forms.Control[] { this.pictureBox3, this.pictureBox2, this.pictureBox1}); this.Name = "ShowForm"; this.Text = "Show Form"; this.ResumeLayout(false); } #endregion } }