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
505
field chooser label text alignment
posted

Hi,

I have a grid where some of the numeric columns have set LabelTextAlignment="Right" to right justify the header text.

However in the field chooser dialog the fields are also displayed right justified in the list which looks rather ridiculous. Is there a way to prevent this 'feature'?

Parents
No Data
Reply
  • 138253
    Verified Answer
    Offline posted

    Hello marjones,

    Thank you for your post. I have been looking through it and I reproduce your behavior. To prevent this feature, I suggest you add the following code in the FieldChooserOpening Event of your xamDataGrid:

    e.FieldChooser.CurrentFields[num].Field.Settings.LabelTextAlignment = TextAlignment.Left;

    where "num" is the index of the Field, which is zero based. By doing this you will set the TextAlignment Property of a specific field so that all the headers could look the same in the FieldChooser.

    If you have any further questions on this matter do not hesitate to ask.

Children