wpf:检查 Span 中有多少个组件?
我有 WPF Span,用作 TextBlock 的源。我正在做一些测试,在代码中了解 Span 内部有多少种类型的组件将非常有帮助。
例如,在某一时刻,我将一个新的 Bold() 插入到跨度的内联中。我如何检查跨度内是否恰好包含一个 Bold 组件?
我不太确定如何搜索 Span.Inlines 来检索这个数字。
I have WPF Span that is used as a source to a TextBlock. I am doing some tests and it would be very helpful to know in code how many of which type of component is inside of the Span.
For example, at one point I insert a new Bold() into the span's inlines. How would I check that there is exactly one Bold component contained inside of the span?
I'm not too sure how to search Span.Inlines to retrieve this number.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以迭代
Span
的Inlines
属性:You can iterate over the
Inlines
property of theSpan
: