c# 求实现图片定位的代码,单击一个文本框,picturebox空间的图片就定位在需要指定的位置

有windows应用程序上的代码吗?
2024-11-01 04:07:30
推荐回答(2个)
回答1:












你把img换成picturebox,位置你可以随便指定,这个例子是指定的鼠标出发事件的坐标

回答2:

this.picturebox.Location = new Point(x, y);

X,Y 为你想要设置的坐标

WinForm

--------------c# Code----------------