Reputation: 5561
I want to disable undo redo feature of textbox and richtextbox. Please tell how to do this.
Upvotes: 8
Views: 2912
Reputation: 263147
You can use the IsUndoEnabled property:
<TextBox Name="yourTextBox" IsUndoEnabled="False" />
Upvotes: 18