日期:2014-05-18 浏览次数:20996 次
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace ShowPicPosition { public partial class Form1 : Form { Bitmap pic = new Bitmap("win7-default.jpg"); public Form1() { InitializeComponent(); } private void panel1_Paint(object sender, PaintEventArgs e) { Rectangle r1 = new Rectangle(0, 0, 100, 40); Rectangle r2 = new Rectangle(14, 194, 100, 40); e.Graphics.DrawImage(pic, r1, r2, GraphicsUnit.Pixel); } } }