开发者

swap two panels in web application

i ha开发者_运维问答ve 2 panels & i want to swap those 2 panels. how can i do that in web application..?


You could just swap their locations. Something like this would probably work.

Point temp = Panel1.location;
Panel1.Location=Panel2.Location;
Panel2.Location=temp;

This way, you are merely swapping the location of the panels (and their contents).

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜