Anyone have any ideas as to how to get a XamTextEditor inside a XamDatagrid to wrap? I have tried all the suggestions from the Forums without any luck. Maybe My grid is horizontal, but I doubt that should matter...
Thanks,
Hello,
Creating a style for the XamTextEditor with a Setter for the TextWrapping property will do the trick. The style looks like this:
<Style TargetType="{x:Type igEditors:XamTextEditor}">
<Setter Property="TextWrapping" Value="Wrap"/>
</Style>
Alex.
Thanks but it doesn't work if
<igDP:XamDataGrid.ViewSettings> <igDP:GridViewSettings Orientation="Horizontal" /></igDP:XamDataGrid.ViewSettings>
Can you get it to work with a Horizontal grid?