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.
を に変換することは可能System.Windows.Documents.BlockですSystem.Windows.UIElementか?
System.Windows.Documents.Block
System.Windows.UIElement
作成したブロックを固定ドキュメントに追加したいので、これが必要です。他に方法はありますか?
誰かがまだこれを知る必要があるなら、それはかなり簡単です。
BlockUIElementを使用してUIElementを含めるだけです。
たとえば、Border要素をテーブルのセルにアタッチする場合:
TableCellセル=newTableCell(new Border()); //動作しません!
TableCellセル=newTableCell(new BlockUIContainer(new Border())); わかった!