We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Maybe there is a better way of doing it that doesn't break the undo stack. Just by doing the following will break it
txt1.Text = "a";
The text was updated successfully, but these errors were encountered:
This is intentional behavior.
You can use txt1.Document.Text = "a"; to bypass clearing the undo stack.
txt1.Document.Text = "a";
Sorry, something went wrong.
No branches or pull requests
Maybe there is a better way of doing it that doesn't break the undo stack. Just by doing the following will break it
txt1.Text = "a";
The text was updated successfully, but these errors were encountered: