Spire.Doc,保存输入会覆盖之前的输入,windows 形式
Spire.Doc, saving input overwrites previous input, windows forms
我有一个提问的表格,你在文本框中写下答案。当您点击 'next' 或 'add' 时,它应该保存输入并像这样循环,直到您点击保存。无论出于何种原因,它只保存一行而不保存后续行。这是我的代码。
private void add_Click(object sender, EventArgs e)
{
Paragraph question = document.AddSection().AddParagraph();
question.AppendText(questions.Text + " " + answer.Text);
document.SaveToFile(teamMember.Text + ".doc", FileFormat.Doc);
}
private void finish_Click(object sender, EventArgs e)
{
document.SaveToFile(teamMember.Text + ".doc", FileFormat.Doc);
}
不确定我是否理解正确。从你的代码中,我发现每次你添加一个新的部分时,这都会导致每个问题和答案都被添加到文档的一个新部分。如果这是问题所在,您可以尝试以下代码:
if (doc.Sections.Count == 0)
{
//If the document is null, then add a new section
Section sec = doc.AddSection();
Paragraph para = sec.AddParagraph();
para.AppendText("this is the first para");
}
else
{
//Else add the text to the last paragraph of the document
Paragraph paranew = doc.Sections[0].Paragraphs[doc.Sections[0].Paragraphs.Count - 1];
paranew.AppendText(" " + "this is new para");
}
希望对您有所帮助。
我有一个提问的表格,你在文本框中写下答案。当您点击 'next' 或 'add' 时,它应该保存输入并像这样循环,直到您点击保存。无论出于何种原因,它只保存一行而不保存后续行。这是我的代码。
private void add_Click(object sender, EventArgs e)
{
Paragraph question = document.AddSection().AddParagraph();
question.AppendText(questions.Text + " " + answer.Text);
document.SaveToFile(teamMember.Text + ".doc", FileFormat.Doc);
}
private void finish_Click(object sender, EventArgs e)
{
document.SaveToFile(teamMember.Text + ".doc", FileFormat.Doc);
}
不确定我是否理解正确。从你的代码中,我发现每次你添加一个新的部分时,这都会导致每个问题和答案都被添加到文档的一个新部分。如果这是问题所在,您可以尝试以下代码:
if (doc.Sections.Count == 0)
{
//If the document is null, then add a new section
Section sec = doc.AddSection();
Paragraph para = sec.AddParagraph();
para.AppendText("this is the first para");
}
else
{
//Else add the text to the last paragraph of the document
Paragraph paranew = doc.Sections[0].Paragraphs[doc.Sections[0].Paragraphs.Count - 1];
paranew.AppendText(" " + "this is new para");
}
希望对您有所帮助。