如何在 Silverlight 中使用 TextRange?
我正在使用我在网上找到的以下代码,
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Silverlight 中不支持
TextRange
。您将获得的最接近的是TextSelection
对象,它仅表示用户选择的文本范围。您无法自己操作选择内容,除非在RichTextBox
上调用SelectAll
。编辑
如果您只想以 Xaml 形式访问 RichTextBox 的全部内容,则可以使用其
Xaml
属性。There is no support for the
TextRange
in Silverlight. The closest you'll get is theTextSelection
object which merely represents the range of text that the user has selected. You can't manipulate the selection yourself, except by callingSelectAll
on theRichTextBox
.Edit
If you just want to access the entire contents a RichTextBox as Xaml then you can use its
Xaml
property.