2

I've searched half a day, and found none.

Do you happen to know there's one?

Thanks!

deerchao
  • 10,454
  • 9
  • 55
  • 60

2 Answers2

3

Its not built in but you can implement your own Take look to this post in stack over flow C#: How to implement good and efficient undo/redo functionaly for a TextBox

Community
  • 1
  • 1
DeveloperX
  • 4,633
  • 17
  • 22
0

you can implement custom undo feature in textbox ....

you can handle the TextChanged event and just push the textbox contents onto a stack each time it changes, then pop and refresh the TextBox every time the user hits Ctrl-Z.....

Glory Raj
  • 17,397
  • 27
  • 100
  • 203