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