Is there any way to lock the encoding text automatically in EditControl? When I ener unsupported chacracter with "US-ASCII", EditControl will automatically switch encoding to "Unicode". But I don't wan't so, is there any solution? Thanks for reading!
Here is example images
|
# Form1.cs
public Form1() {
InitializeComponent();
this.editControl1.StatusBarSettings.Visible = true;
this.editControl1.StatusBarSettings.TextPanel.Visible = true;
this.editControl1.StatusBarSettings.StatusPanel.Visible = true;
this.editControl1.StatusBarSettings.EncodingPanel.Visible = false;
this.editControl1.StatusBarSettings.CoordsPanel.Visible = true;
this.editControl1.StatusBarSettings.InsertPanel.Visible = true;
}
|
Thanks for the help, but I want when I type "ư" in the US_ASCII encoding it will show "??" but instead the EditControl converts Unicode to match that character, I don't want that. I just want them to be displayed only characters supported in the US_ASCII encoding