// pictureBox1 // this.pictureBox1.Location = new System.Drawing.Point(8, 16); this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Size = new System.Drawing.Size(312, 288); this.pictureBox1.TabIndex = 2; this.pictureBox1.TabStop = false; // // openFileDialog1 // this.openFileDialog1.FileOk += new System.ComponentModel.CancelEventHandler(this.openFileDialog1_FileOk); // // button3 // this.button3.Location = new System.Drawing.Point(368, 200); this.button3.Name = "button3"; this.button3.Size = new System.Drawing.Size(104, 23); this.button3.TabIndex = 1; this.button3.Text = "读取文件并打开"; this.button3.Click += new System.EventHandler(this.button3_Click); // // ADO_Demo // this.AutoScaleBaseSize = new System.Drawing.Size(6, 14); this.ClientSize = new System.Drawing.Size(496, 317); this.Controls.Add(this.pictureBox1); this.Controls.Add(this.button2); this.Controls.Add(this.button1); this.Controls.Add(this.button3); this.Name = "ADO_Demo"; this.Text = "ADO_Demo"; this.ResumeLayout(false);
} #endregion
/// <summary> /// 应用程序的主入口点。 /// </summary> [STAThread] static void Main() { Application.Run(new ADO_Demo()); }
/// < 上一页 [1] [2] [3] [4] [5] [6] 下一页 |