Expression Blend:在设计时将行插入网格

发布于 2024-08-21 00:10:16 字数 162 浏览 2 评论 0原文

好的,我有一个包含很多控件的网格。哎呀,我错过了一些东西,需要将所有内容移到一行...

type type type

我的错误,我需要两行...

type type type

好吧,这真的很糟糕。那么,如何以将所有内容向下移动的方式插入一行。

Ok, so I have a grid with lots of controls. And oops, I missed something and need to move everything down one row...

type type type

My mistake, I needed two rows...

type type type

Ok, this really sucks. So, how do I insert a row in a way that will move everything down.

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

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

发布评论

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

评论(1

秋凉 2024-08-28 00:10:16

不确定您使用的是哪个版本的 Blend,但在版本 4 中,我可以单击网格左侧将一行分成两行。这会产生三种效果:

  1. 在 Grid.RowDefinitions 部分中创建一个新行
  2. 将 1 添加到您的分区下的所有行的 Grid.Row 属性(将它们全部向下移动一行)
  3. 将 1 添加到中所有控件的 Grid.RowSpan 属性您已划分的行

您现在可以手动将 RowSpans 更改回其原始值,瞧 - 您有一个空白行。

Not sure which version of Blend you are on, but in version 4 I can click to the left of the grid to divide a row into two. This has three effects:

  1. creates a new row in the Grid.RowDefinitions section
  2. adds 1 to the Grid.Row attributes of all rows beneath your division (moves them all down a row)
  3. adds 1 to the Grid.RowSpan attribute of all controls in the row you have divided

You can now manually change the the RowSpans back to their original value and voila - you have a blank row.

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