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