Reputation: 364
How can I implement the following XAML with the Code-Behind?
<helix:MeshGeometryVisual3D MeshGeometry="{Binding TextGeometry}" />
Upvotes: 0
Views: 273
Reputation: 887
Have you tried:
var geometry = new MeshGeometryVisual3D
{
MeshGeometry = TextGeometry,
};
Upvotes: 1