Hello,
I have a datagrid, string header is : "NHPRP \u00B130°"
On a classic WPF datagrid, the header is good : http://gyazo.com/8bc6e73829ee9bd5ef0f8c993a9a4699
On your grid, some parts are missing : http://gyazo.com/63c64b9930377cd6f6930e53aa415b25
Could see why, because it's the most important part in the header ?
Regards
Thank you for your post.
I have been looking into it. I created sample application based on your scenario and I could not managed to reproduce the behavior that you have described. If you are not able to reproduce the issue with the attached sample application, would you please modify it with the functionality, that you are using, so it reproduces the issue. This way I would be able to further investigate this for you and provide you with more detailed information on this matter. Would you please provide me with more details about the version of the assemblies that you are using? I have attached and image that illustrate how it visualizes on my side.
Looking forward to hearing from you.
Thanks for your project.
My xaml code is :
<dataPresenter:XamDataGrid AutoFit="True" DataSource="{Binding Path=Lines}" GroupByAreaLocation="None"> <dataPresenter:XamDataGrid.FieldLayoutSettings> <dataPresenter:FieldLayoutSettings FilterUIType="LabelIcons" RecordSelectorLocation="None" /> </dataPresenter:XamDataGrid.FieldLayoutSettings> <dataPresenter:XamDataGrid.FieldSettings> <dataPresenter:FieldSettings AllowEdit="False" CellClickAction="SelectRecord" LabelClickAction="Nothing" /> </dataPresenter:XamDataGrid.FieldSettings> </dataPresenter:XamDataGrid>
On the same vieModel as Lines, there is properties Header1 and Header2 with special characters.
I can't keep specified code for each column name, because thay are based on properties. I can have 2 or 10 headers.
Maybe the xaml need to specify a textbox or an area that can handle the special character for all headers.
Thanks for your help.