我有一个WPF应用程序,还有一个用于搜索的文本框。
我有没有办法标记此TextBox
,因此Windows或浏览器自动填充功能不会存储该文本,该功能会显示此TextBox
的所有过去条目的下拉列表?
答案 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