块到 UIElement 的转换
是否可以将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因为如果有人仍然需要知道这一点,那就很容易了。
只需使用 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!