I need to view english text in a listview with the RightToLeft property set to "true".
When I put brackets in the text it seems to be reversed.
If I try to write "Stack(Overflow)" I will see "(Stack(Overflow".
Is there a way to fix this?
this is a part of my code:
Item = (ListViewItem) myList.Items.Add(id, myString, iconIndex);
MyListView.SetSubItemText(Item, 1, s1);
MyListView.SetSubItemText(Item, 2, s2);
MyListView.SetSubItemText(Item, 3, s3);
MyListView.SetSubItemText(Item, 4, s4);