private void pictureBox1_MouseLeave(object sender, EventArgs e) { //控件,方式(放大为0,缩小为1),放大或缩小像素 this.Cursor = Cursors.Default; Dr.butt(pictureBox1, 1, 7); }
private void pictureBox1_MouseEnter(object sender, EventArgs e) { //控件,方式(放大为0,缩小为1),放大或缩小像素 this.Cursor = Cursors.Hand; Dr.butt(pictureBox1, 0, 7); }