我在InDesign中创建了一个模板,并将其导出到扩展名为.idml和. xml的文件中。之后,我把这些文件到我的项目的根。我想做的是以编程方式填充xml文件的基础上标签槽的代码,并在此之后得到这些变化,我的模板,所以最终用户可以看到前端的变化。
导出的xml文件如下所示:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Root>
<makeFirstAd>new value for makeFirstAd</makeFirstAd>
</Root>
字符串
下面是我的部分代码在c#有关更新xml文件是工作
private void button1_Click(object sender, EventArgs e)
{
string updatedValue = "new value for makeFirstAd";
UpdateMakeFirstAdValue(updatedValue);
}
public void UpdateMakeFirstAdValue(string updatedValue)
{
try
{
// Get the path to the XML file located in the root of the project
string xmlFilePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "CarIndexBrochure.xml");
// Step 1: Read the XML file
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.Load(xmlFilePath);
// Step 2: Update the value of <makeFirstAd> element
XmlNode makeFirstAdNode = xmlDoc.SelectSingleNode("/Root/makeFirstAd");
if (makeFirstAdNode != null)
{
makeFirstAdNode.InnerText = updatedValue;
}
// Step 3: Save the updated XML
xmlDoc.Save(xmlFilePath);
}
catch (Exception ex)
{
// Handle any exceptions that may occur during the process
Console.WriteLine("An error occurred: " + ex.Message);
}
}
型
如何将此更改返回到模板,以便当用户想要打开模板时,他可以直观地看到更改?
1条答案
按热度按时间pokxtpni1#
你是说像这样的东西吗
字符串
它更新了当前的INDD文件。然后,您可以将其保存为IDL模板
型