Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
665
XamTextEditor with wrap
posted

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,

Parents
No Data
Reply
  • 69686
    posted

    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.

Children