I'm developing a Windows Store App using C# + XAML. When I add a TextBox with the property TextWrapping
set to NoWrap
, a "X" appears at the end of the TextBox when it's focused.
So, I need to remove this "X" and the TextBox can not Wrap.
As everyone stated, you really shouldn't remove the "X" unless if you have a really good reason to do that.
To remove the X, instead of setting TextWrapping to "NoWrap", you have to set it to TextWrapping="Wrap"