0

How can I implement the following XAML with the Code-Behind?

 <helix:MeshGeometryVisual3D MeshGeometry="{Binding TextGeometry}" />
Maria
  • 344
  • 8
  • 30

1 Answers1

1

Have you tried:

var geometry = new MeshGeometryVisual3D
{
    MeshGeometry = TextGeometry,
};
CCamilo
  • 897
  • 1
  • 15
  • 18
  • Thanks a lot. I mistakenly was looking for `SetBinding` or something like that. While it has been much easier. – Maria Aug 27 '15 at 14:26