创建实例 WPF InlineCollection
我在运行时以编程方式填充一个类,并从构建 InlineCollection 类的集合开始。但是,InlineCollection 类无法实例化。
我的问题是,如果我无法创建它的实例,如何将内联集合添加到类型为 InlineCollection 的 Span.Inlines 中?
基本上我需要一组内联类的集合,因此我可以随机将 Span.Inlines 设置为新的内联类集合。
I'm populating a class programtically at runtime, and started by building a collection of InlineCollection classes. However, InlineCollection class cannot be instantiated.
My question is, how do I add a collection of inlines to Span.Inlines whose type is InlineCollection, if I can't create an Instance of it?
Basically I need a collection of a collection of Inline classes, so I can randomally set Span.Inlines to a new collection of Inline classes.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,因为您无法实例化
InlineCollection
类,但您可以做的是使用例如List
并填充它。稍后很容易将它们应用到例如
TextBlock
中:yes, as you cannot instantiate
InlineCollection
class, but what you can do is to use for exampleList<Inline>
and populate this.later it is easy to apply them to, for example, a
TextBlock
:看看这里:http://msdn.microsoft.com/en-us/ magazine/cc163371.aspx
看起来你想做的是:
Have a look here: http://msdn.microsoft.com/en-us/magazine/cc163371.aspx
It looks like what you want to do is: