我怎么能初始化款内嵌有新InlineCollection? 我定义InlineCollection并添加字符串到它运行的元素。 我试图初始化这样
ParagraphComponent.Inlines = _inlineCollection;
不过,我得到错误信息ParagraphComponent.Inline是只读的。
我怎么能初始化款内嵌有新InlineCollection? 我定义InlineCollection并添加字符串到它运行的元素。 我试图初始化这样
ParagraphComponent.Inlines = _inlineCollection;
不过,我得到错误信息ParagraphComponent.Inline是只读的。
从的备注部分Inlines
MSDN上的属性页:
使用此属性返回枚举或操纵一个段落元素的内容InlineCollection。
所以,你可以这样做:
ParagraphComponent.Inlines.Clear();
ParagraphComponent.Inlines.AddRange(_inlineCollection);
你不能内联是只读
您将需要直接添加运行到款
在XAML可以定义内联