我有 infopath 表单,我可以使用以下方法从字段中检索值:
MainDataSource.CreateNavigator().SelectSingleNode("/my:myFields/my:field1", NamespaceManager).Value;
但我的问题是,我们如何在该字段中插入新值?
答案 0 :(得分:0)
请浏览所有属性,您可以找到
MainDataSource.CreateNavigator().SelectSingleNode(
"/my:myFields/my:field1",NamespaceManager).SetValue("Required value");
我希望它有所帮助