Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以将 a 转换System.Windows.Documents.Block为System.Windows.UIElement?
System.Windows.Documents.Block
System.Windows.UIElement
我需要这个,因为我想将创建的块添加到固定文档中。还有其他方法吗?
因为如果有人仍然需要知道这一点,这很容易。
只需使用 BlockUIElement 来包含 UIElement。
例如,如果您要将 Border 元素附加到表格的单元格:
TableCell 单元格 = 新 TableCell(新边框());//不会工作!
TableCell cell = new TableCell(new BlockUIContainer(new Border())); 好的!