How to create Word document in WPF?
Syncfusion® Essential® DocIO is a .NET Word library used to create, read, and edit Word documents programmatically without Microsoft Word or interop dependencies. Using this library, you can create a Word document in WPF.
Steps to create Word document programmatically in WPF:
- Create a new WPF application project.
- Install the Syncfusion.DocIO.Wpf NuGet package as a reference to your WPF application from NuGet.org.
- Include the following namespaces in the MainWindow.xaml.cs file.
C#
using Syncfusion.DocIO.DLS; using System; using System.ComponentModel; using System.Windows;
VB
Imports Syncfusion.DocIO.DLS Imports System Imports System.ComponentModel Imports System.Windows
- Add a new button in MainWindow.xaml to create Word file as follows.
XAML
<Button Click="btnCreate_Click" Margin="0,0,10,12" VerticalAlignment="Bottom" Height="30" BorderBrush="LightBlue" HorizontalAlignment="Right" Width="180"> <Button.Background> <LinearGradientBrush EndPoint="0.5,-0.04" StartPoint="0.5,1.04"> <GradientStop Color="#FFD9E9F7" Offset="0"/> <GradientStop Color="#FFEFF8FF" Offset="1"/> </LinearGradientBrush> </Button.Background> <StackPanel Orientation="Horizontal" Height="23" Margin="0,0,0,-2.52" VerticalAlignment="Bottom" HorizontalAlignment="Right" Width="100"> <Image Name="image2" Margin="2" HorizontalAlignment="Center" VerticalAlignment="Center" /> <TextBlock Text="Create Document" Height="15.96" Width="126" Margin="0,4,0,3" /> </StackPanel> </Button>
- Add the following code in btnCreate_Click to create Word document with simple text.
C#
//Creates a new instance of WordDocument (Empty Word Document) using (WordDocument document = new WordDocument()) { //Adds a section and a paragraph to the document document.EnsureMinimal(); //Appends text to the last paragraph of the document document.LastParagraph.AppendText("Hello World"); //Saves the Word document document.Save("Result.docx"); }
VB
' Creates a new instance of WordDocument (Empty Word Document) Using document As WordDocument = New WordDocument ' Adds a section and a paragraph to the document document.EnsureMinimal() ' Appends text to the last paragraph of the document document.LastParagraph.AppendText("Hello World") ' Saves the Word document document.Save("Result.docx") End Using
A complete working example of how to create Word document in WPF can be downloaded from Create-Word-file.zip
By executing the program, you will get the Word document as follows.
Take a moment to peruse the documentation, where you can find basic Word document processing options along with features like mail merge, merge and split documents, find and replace text in the Word document, protect the Word documents, and most importantly PDF and Image conversions with code examples.
Explore more about the rich set of Syncfusion® Word Framework features.
An online example to generate or create Word document.
See Also:
Create Word document in Windows Forms
Create Word document in ASP.NET Core
Create Word document in ASP.NET MVC
Create Word document in Xamarin
Create Word document in Xamarin.Android
Starting with v16.2.0.x, if you reference Syncfusion® assemblies from trial setup or from the NuGet feed, include a license key in your projects. Refer to link to learn about generating and registering Syncfusion® license key in your application to use the components without trail message.
I hope you enjoyed learning about how to create a Word document in WPF.
You can refer to our WPF Word feature tour page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications. You can also explore our WPF Word example to understand how to create and manipulate data.
For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion®, you can try our 30-day free trial to check out our other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!