Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
最近我搬来了Asp.net,WPF我Wpf Grid在 asp.net 中失踪了。 我table用来在 asp.net 中获得相同的 UI,但这与 wpf Grid 相比毫无意义。有什么方法可以在 Asp 中使用 Grid 吗?或任何其他类似的控制存在?注意:GridView不是我的事。编辑:我对布局控件感兴趣,而不是表格数据显示控件。
Asp.net
WPF
Wpf Grid
table
GridView
我非常怀疑您会找到任何真正的 ASP.NET 控件,这些控件可以呈现您在 WPF Grid 中拥有的布局选项,例如自动调整大小的列等。
如果面对相同的要求,我可能会选择使用客户端脚本进行布局:有一个名为Masonary的 jQuery 插件,它的多列示例似乎符合您的需要。
每个“表格单元格”实际上是一个<div>元素,您将列指定为其类的一部分,例如box col1 masonry-brick,然后 jQuery 插件将它们组织在一起。
<div>
box col1 masonry-brick
不如 Grid 优雅,但它可以让您很好地控制布局。