vb.net - How can I add/subtract to one axis on a control's location in a form? -
i know can .location = new point(x,y) how can add or subtract value of strictly x or y coordinate?
something this?
lbltester.location.x = lbltester.location.x + 100
lbltester.location = new point(lbltester.location.x + 100, lbltester.location.y)
Comments
Post a Comment