C# - 编辑后组合框索引发生变化
不久前,有人回答了我的问题,如何编辑加载文本文件的组合框,以及如何保存最近编辑的行。
现在的问题是我只能更改一个字母在它更新之前,然后 selectedindex 更改为 -1,所以我必须在下拉列表中再次选择我正在编辑的行。
希望有人知道为什么它会改变索引,以及如何阻止它这样做。
A moment ago someone answered my question on how to edit the combobox loaded with a text file, and how to save the recently edited line.
C#: Real-time combobox updating
The problem now is that I can only change one letter before it updates, and then the selectedindex changes to -1, so I have to select the line I was editing again in the dropdown list.
Hopefully someone knows why it's changing index, and how to stop it from doing that.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据我对这个问题的理解,你可以做一件事。在comboBox1_TextChanged方法中,您可以不放置前面的代码,而只需设置一个bool变量,例如将textChangedFlag设置为true,并且可以将该变量的默认值设置为false。
然后使用 KeyDown 事件来编辑组合框项目。
我将给出示例代码。
示例代码:
您可以将此代码放入 KeyDown 事件处理程序方法中。
希望有帮助
As my understanding of the problem goes, you can do one thing. In the comboBox1_TextChanged method, instead of putting the previous code, you can just set a bool variable, say textChangedFlag to true and you can set the default value of this variable as false.
And then use KeyDown event to edit the combobox item.
I will give a sample code.
Sample Code:
You can put this code in KeyDown event handler method.
Hope it helps