本文介绍了如何获取StatusBarPanel的TextChanged事件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



我试图将TextChanged事件添加到StatusBarPanel,但是该事件不存在.
如何确定何时更改文本?

Hi,

I am trying to add a TextChanged event to a StatusBarPanel but that event does not exist.
How can I determine when the text is changed?

<pre lang="vb">For Each pan As System.Windows.Forms.StatusBarPanel In SB.Panels<br />
     AddHandler pan.TextChanged, AddressOf PanelTextChanged<br />
Next pan</pre>



非常欢迎任何帮助!



Any help is very welcome!

推荐答案




这篇关于如何获取StatusBarPanel的TextChanged事件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 09:58