如何在 Silverlight 中使用 TextRange?

发布于 2024-11-17 01:34:43 字数 386 浏览 3 评论 0原文

我正在使用我在网上找到的以下代码,

http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/750a654e-b002-4742-8f46-609e93f6ec81

我可以将 RichTextBox 内容保存到 SQL DB但我无法在我的 Sliverlight 文件中使用 TextRange,我该如何包含?哪个命名空间?如果有的话,该命名空间可以在 Silverlight 中工作吗?

先感谢您!!!

I am using the following code i found online,

http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/750a654e-b002-4742-8f46-609e93f6ec81

where i can save RichTextBox content to SQL DB but i am unable to use TextRange in my Sliverlight file how do i include? which namespace? if any will that namespace work in Silverlight?

Thank you in advance!!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

峩卟喜欢 2024-11-24 01:34:43

Silverlight 中不支持 TextRange。您将获得的最接近的是 TextSelection 对象,它仅表示用户选择的文本范围。您无法自己操作选择内容,除非在 RichTextBox 上调用 SelectAll

编辑

如果您只想以 Xaml 形式访问 RichTextBox 的全部内容,则可以使用其 Xaml 属性。

There is no support for the TextRange in Silverlight. The closest you'll get is the TextSelection object which merely represents the range of text that the user has selected. You can't manipulate the selection yourself, except by calling SelectAll on the RichTextBox.

Edit

If you just want to access the entire contents a RichTextBox as Xaml then you can use its Xaml property.

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