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