在C#中的頁腳與輸出我是一個新手,C#,我有一個「保存到文件」在我的程序選項,它可以節省一個RichTextBox的輸出在一個Word文檔,當用戶選擇這個選項,我用saveFileDialogue框爲用戶選擇了文件名和位置。添加頁眉和從我的程序
我想是每一個當用戶預先選擇此選項,其中輸出保存Word文檔有一個預先定義的頁眉和頁腳圖片...
非常感謝你的幫助時!
下面是我的「保存到文件」的代碼。
private void menuItem7_Click(object sender, EventArgs e)
{
// Create a SaveFileDialog to request a path and file name to save to.
SaveFileDialog saveFile1 = new SaveFileDialog();
// Initialize the SaveFileDialog to specify the RTF extension for the file.
saveFile1.DefaultExt = "*.rtf";
saveFile1.Filter = "RTF Files|*.rtf";
// Determine if the user selected a file name from the saveFileDialog.
if (saveFile1.ShowDialog() == System.Windows.Forms.DialogResult.OK &&
saveFile1.FileName.Length > 0)
{
// Save the contents of the RichTextBox into the file.
richTextBox1.SaveFile(saveFile1.FileName,
RichTextBoxStreamType.PlainText);
}
}
RichTextBox不能替代文字處理器,這是一種支持頁眉和頁腳的程序。您需要考慮自動化,例如Microsoft Word。在C#中得到了Microsoft.Office.Interop.Word命名空間中的類的支持。 – 2012-07-30 16:01:14
你的「頁眉和頁腳圖片」是什麼格式?像JPEG或BMP的圖像?將這些保存到文本文件中不太可能有用;你想要保存文件的格式是什麼? – 2012-07-30 16:03:32
如果我將文件另存爲docx文件,那麼我需要的更改是什麼?非常感謝您的幫助! – user1563401 2012-07-30 16:04:18