Silverlight 如何在网格行之间移动控件?
如何将控件从网格的一行移动到另一行而不从第一行删除控件然后将其添加到第二行???
谢谢
How I can move control from one row of Grid to another without remove the control from the first row and then add it to the second row???
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设您想在运行时在代码隐藏中执行此操作,您可以尝试:
Assuming you want to do this at run-time, in the code-behind, you can try:
为什么?为了轻松完成此操作,您必须更改它所在的行。
另一种方法是使用数学计算网格、行和控件的高度,并按边距定位它。 - 非常混乱的代码。
Why? To get this done easily, you have to change the row that it is in.
Another way is to use math and do calculation of the height of grid, row and control and position it by margin. - very messy code.