Silverlight Web 应用程序 RichTextBox 添加智能感知功能
我试图添加智能感知功能。我需要处理 RTB 中的 TextInput 事件,但似乎不会被解雇
<Grid x:Name="LayoutRoot" Background="White" Loaded="LayoutRoot_Loaded" TextInput="LayoutRoot_TextInput">
<RichTextBox HorizontalAlignment="Left" Margin="22,18,0,0" Name="richTextBox1" VerticalAlignment="Top" Height="177" Width="309"
TextInputUpdate="richTextBox1_TextInputUpdate_1" TextInput="richTextBox1_TextInput_2" />
</Grid>
我还有一个断点,我还编写了 console.writline 语句来验证代码是否有效
I was trying to add intellisense capability. I need to handle TextInput event in RTB but seems not to be fired
<Grid x:Name="LayoutRoot" Background="White" Loaded="LayoutRoot_Loaded" TextInput="LayoutRoot_TextInput">
<RichTextBox HorizontalAlignment="Left" Margin="22,18,0,0" Name="richTextBox1" VerticalAlignment="Top" Height="177" Width="309"
TextInputUpdate="richTextBox1_TextInputUpdate_1" TextInput="richTextBox1_TextInput_2" />
</Grid>
i have a break point also i hv written console.writline statement to verify the code workds or not
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您应该使用
PreviewTextInput
,或者创建一个继承自PreviewTextInput
的新控件,然后重写派生类中的PreviewTextInput
方法。I think you should use
PreviewTextInput
, or create a new control that inherits fromPreviewTextInput
and then override thePreviewTextInput
-method in the derived class.