WPF 将控件停靠到网格中的单元格

发布于 2024-10-13 20:38:40 字数 81 浏览 1 评论 0原文

如果我有一个 2 x 2 网格,如何获得一个按钮来填充整个单元格?我必须使用触发器吗?在这种情况下我如何获得列的宽度?

谢谢 伊恩

If I have a 2 by 2 Grid how do I get a button to fill the entire cell? Do I have to use a trigger? How would I get the column's width in that case?

Thanks
Ian

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

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

发布评论

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

评论(1

暮年慕年 2024-10-20 20:38:40

默认情况下,Button 将占用整个单元格。

    <Grid>
        <Grid.RowDefinitions>
            <RowDefinition Height="100"></RowDefinition>
        </Grid.RowDefinitions>
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="200"></ColumnDefinition>
        </Grid.ColumnDefinitions>
        <Button></Button>
    </Grid>

您可以通过访问 ColumnDefinitions 集合来获取列宽。

Grid g = new Grid();
g.ColumnDefinitions[0].Width;

The Button by default will consume the entire cell.

    <Grid>
        <Grid.RowDefinitions>
            <RowDefinition Height="100"></RowDefinition>
        </Grid.RowDefinitions>
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="200"></ColumnDefinition>
        </Grid.ColumnDefinitions>
        <Button></Button>
    </Grid>

You can get the columns width by accessing the ColumnDefinitions collection.

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