Silverlight Web 应用程序 RichTextBox 添加智能感知功能

发布于 2024-12-05 15:53:06 字数 501 浏览 0 评论 0原文

我试图添加智能感知功能。我需要处理 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

错々过的事 2024-12-12 15:53:06

我认为您应该使用 PreviewTextInput,或者创建一个继承自 PreviewTextInput 的新控件,然后重写派生类中的 PreviewTextInput 方法。

I think you should use PreviewTextInput, or create a new control that inherits from PreviewTextInput and then override the PreviewTextInput-method in the derived class.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文