admin管理员组文章数量:1345330
How to create a ComboBox content control in word(2019) by OpenXML sdk(C#)?
I use code(see below) to create ComboBox content control in word. This ComboBox control work. But there is issue in this control. Word user can focus into options and change the text of that option.
Following is the code:
static SdtBlock CreateComboBoxSdtBlock(string title, string[] items, string selectedValue)
{
var comboBox = new SdtContentComboBox();
foreach (var item in items)
{
comboBox.Append(new ListItem { DisplayText = item, Value = item });
}
return new SdtBlock(
new SdtProperties(
new SdtAlias { Val = title },
new Tag { Val = title },
new Lock { Val = LockingValues.SdtLocked }
),
new SdtContentBlock(
new SdtContentRun(
new Paragraph(new Run(new Text(selectedValue))),
comboBox
)
)
);
}
本文标签: how to create a ComboBox content control in word by OpenXML sdkStack Overflow
版权声明:本文标题:how to create a ComboBox content control in word by OpenXML sdk - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743806274a2542237.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论