在Web应用程序中交换两个面板

时间:2011-02-20 03:48:03

标签: c# asp.net

我有2个面板&我想交换这2个面板。我怎么能在网络应用程序中这样做..?

1 个答案:

答案 0 :(得分:0)

你可以换掉他们的位置。这样的事情可能会奏效。

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

这样,您只需交换面板的位置(及其内容)。