I use a ComboBox with DropDownStyle set to DropDown, meaning I can insert any text, independently from ComboBox's list DataSource.
I set the DataSource to:
comboBox.DataSource = new List<string> {"", "oe"};
If I set text with ligature:
comboBox.Text = "œ";
it is immediatelly changed to the oe form.
Text is normally set when ligature's normalization entry does not exist in data source.
How to force to not normalize this text?