Any TextBox control for WinForms with multi level undo feature?
Asked Answered
K

2

2

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

Do you happen to know there's one?

Thanks!

Kismet answered 6/11, 2011 at 8:19 Comment(0)
J
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

Jorgenson answered 6/11, 2011 at 8:55 Comment(0)
E
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.....

Eulalia answered 6/11, 2011 at 8:26 Comment(2)
Do you mean you will have a universal undo for the whole window?Parathyroid
No, I just mean the single textbox.Kismet

© 2022 - 2024 — McMap. All rights reserved.