0
Giving a Coordinate
i need to know. Can i move a word to a location.? like x= 4, y=3. in c?
2 ответов
+ 1
Yeah, if you working on a Windows Form and you are pertaining to a Label, just relocate the label using this code:
label.Location = new Point(x,y);
and that is if you mean C# and not C.
0
thanks