1.原代码:
private void pictureBox1_Paint(object sender, System.Windows.Forms.PaintEventArgs e){
Image frame = new Image( @"E:\Microsoft Visual Studio .NET 2003\Visual Studio Projects\Anthon\phiz\frame.jpg" );
Point location = new Point( 2, 284 );
e.Graphics.DrawImage( frame, location );
}请问这段代码那里错了,应该怎么写2.假如工程所在文件夹为“Anthon”,在不改动frame.jpg在phiz子文件夹的情况下,使Image frame = new Image总能定位为
"Anthon/phiz/frame.jpg"