Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我只需要 avalonedit 上的大写字母。
我怎样才能附加财产?或者还有其他替代方法吗?
没有内置功能。
我认为实现这一点的最佳方法是处理TextArea.TextEntering事件。如果输入文本不是全部大写,则通过设置中止文本输入,并使用大写版本再次e.Handled = true;调用。TextArea.PerformTextInput()
TextArea.TextEntering
e.Handled = true;
TextArea.PerformTextInput()