Silverlight 如何在网格行之间移动控件?

发布于 2024-10-06 08:28:07 字数 75 浏览 6 评论 0原文

如何将控件从网格的一行移动到另一行而不从第一行删除控件然后将其添加到第二行???

谢谢

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

牵你手 2024-10-13 08:28:07

假设您想在运行时在代码隐藏中执行此操作,您可以尝试:

// Assuming your control is not in row 1
myControl.SetValue(Grid.RowProperty, 1)

Assuming you want to do this at run-time, in the code-behind, you can try:

// Assuming your control is not in row 1
myControl.SetValue(Grid.RowProperty, 1)
秋意浓 2024-10-13 08:28:07

为什么?为了轻松完成此操作,您必须更改它所在的行。

另一种方法是使用数学计算网格、行和控件的高度,并按边距定位它。 - 非常混乱的代码。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文