块到 UIElement 的转换

发布于 2024-08-08 16:39:45 字数 116 浏览 9 评论 0原文

是否可以将 System.Windows.Documents.Block 转换为 System.Windows.UIElement ?

我需要这个,因为我想将我创建的块添加到固定文档中。还有其他办法吗?

Is it possible to convert a System.Windows.Documents.Block to System.Windows.UIElement?

I need this as I want to add the blocks I created to a fixed document. Is there any other way?

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

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

发布评论

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

评论(1

亢潮 2024-08-15 16:39:45

因为如果有人仍然需要知道这一点,那就很容易了。

只需使用 BlockUIElement 来包含 UIElement。

例如,如果要将 Border 元素附加到表格的单元格:

TableCell cell = new TableCell(new Border()); // 行不通!

TableCell 单元格 = new TableCell(new BlockUIContainer(new Border()));好的!

For if someone still needs to know this, it's pretty easy.

Just use a BlockUIElement to contain the UIElement.

For instance, if you were to attach a Border element to a table's cell:

TableCell cell = new TableCell(new Border()); //won't work!

TableCell cell = new TableCell(new BlockUIContainer(new Border())); OK!

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