如何防止TextBox历史记录存储在WPF应用程序中?

时间:2012-10-15 14:45:12

标签: c# wpf

我有一个WPF应用程序,还有一个用于搜索的文本框。

我有没有办法标记此TextBox,因此Windows或浏览器自动填充功能不会存储该文本,该功能会显示此TextBox的所有过去条目的下拉列表?

1 个答案:

答案 0 :(得分:0)

您可以尝试使用此代码

TextBox textBox = new TextBox();
textBox.Undo();//Undoes the last edit operation
textBox.ClearUndo();//Clears information about the most recent operation from the undo buffer