WPF网格布局

发布于 2024-11-28 12:14:10 字数 436 浏览 0 评论 0原文

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

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

发布评论

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

评论(1

恋你朝朝暮暮 2024-12-05 12:14:11

不,一般来说不是。但是,如果您将 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.

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