在 C# 中如何跨列?

发布于 11-19 03:19 字数 283 浏览 3 评论 0原文

在 C# 中如何跨列? 在 silverlight 中,假设您有一个网格,并且该网格分为 3 列。 并且您想要将 UserControl 添加到此网格,但您希望它跨越所有三个 列。该 C# 代码会是什么样子?

 Grid1.Children.Add(UserControl01);

但然后呢?

Grid1.Children.ElementAt(1).SetValue(Grid.SetRowSpan, 2);

??

How do you span columns in C#?
In silverlight, suppose you have a grid, and this grid is in 3 columns.
and you want to add a UserControl to this grid but you want it to span all three
columns. How would that C# code look like?

 Grid1.Children.Add(UserControl01);

But then what?

Grid1.Children.ElementAt(1).SetValue(Grid.SetRowSpan, 2);

??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

桜花祭2024-11-26 03:19:38

我想你想要这样的东西:

Grid1.Children.Add(UserControl01);
Grid.SetColumnSpan(UserControl01, 3);

MSDN文档: http://msdn.microsoft.com/en-us/library/system.windows.controls.grid.setcolumnspan.aspx

I think you want something like this:

Grid1.Children.Add(UserControl01);
Grid.SetColumnSpan(UserControl01, 3);

MSDN Docs: http://msdn.microsoft.com/en-us/library/system.windows.controls.grid.setcolumnspan.aspx

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