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
160
XamTextEditor with rounded border
posted

How can I configure my xamTextEditor to have rounded borders?.

 

Parents Reply
  • 160
    posted in reply to John Doe

    Hello,

    I caught your example http://blogs.infragistics.com/forums/t/38252.aspx from here and it work's fine.

    But now I have another problem.  I use the style and I set to my column editor style and now I see editors with rounded corners.

    I had this code to establish maxlength in the editor

    Dim

     

    vc As New ValueConstraint

    vc.MaxLength = 2 (I get this value dinamically)

    Dim setter4 As New Setter(XamTextEditor.ValueConstraintProperty, vc)

    XamDGMonedas.Records.FieldLayout.Fields(

    "COD").Settings.EditorType = GetType(XamTextEditor)

    st3.TargetType =

    GetType(XamTextEditor)

    st3.Setters.Add(setter4)

    XamDGMonedas.Records.FieldLayout.Fields(

    "COD").Settings.EditorStyle = st3

    But now I can´t do it

    How I can  do it?

     

Children