标签: c# wpf textbox insertion
我有Behavior<TextBox>的自定义继承者,我想正确处理PreviewTextInput和Pasting事件来过滤输入数据但是在启用插入模式时我无法处理输入数据。我使用Keyboard.IsKeyToggled(Key.Insert)检查插入模式是否已启用,但每个TextBox都有自己的插入模式状态。
Behavior<TextBox>
PreviewTextInput
Pasting
Keyboard.IsKeyToggled(Key.Insert)
TextBox
有什么想法吗?提前谢谢。