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.
如何使用 Code-Behind 实现以下 XAML?
<helix:MeshGeometryVisual3D MeshGeometry="{Binding TextGeometry}" />
你有没有尝试过:
var geometry = new MeshGeometryVisual3D { MeshGeometry = TextGeometry, };