本文介绍了Windows窗体:SelectionChanged事件的TextBox类的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我如何得到通知选择改变文本框在.NET 2.0的?我无法找到一个SelectionChanged事件或OnSelectionChanged方法。什么是我们的最佳解决方法(而不必当然要PInvoke的,)?
How do I get notified of a selection change in a text box in .NET 2.0? I was unable to find a SelectionChanged event or an OnSelectionChanged method. What is the best workaround for this (without having to PInvoke, of course)?
推荐答案
您可以使用一个RichTextBox,并设置多行为false。它有一个OnSelectionChanged
You could use a RichTextBox and set Multiline to false. It has a OnSelectionChanged.
这篇关于Windows窗体:SelectionChanged事件的TextBox类的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!