WPF网格布局
WPF 网格布局是否具有 * 宽度或列,对于 UI 来说很重?
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="334" />
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="1*" />
</Grid.RowDefinitions>
</Grid>
is WPF grid layout with * width or column, heavy for UIs?
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="334" />
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="1*" />
</Grid.RowDefinitions>
</Grid>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,一般来说不是。但是,如果您将 RowDefinitions 与 * 和 ColumnDefintions 与 * 结合使用,这可能会导致大型网格中的性能损失。但这种情况很少见。事实上,长度为 * 的网格是 WPF 布局中最常用的元素之一。
No, in general not. However if you have the combination of RowDefinitions with * and ColumnDefintions with *, this can lead to a performance penalty in big Grids. But this is very seldom. In fact, Grids with the length of * are one of the most used elements in WPF layouting.