├── HEAD ├── WordConvertPDF.zip ├── WordToPDF ├── icon.ico ├── App.config ├── Properties │ ├── Settings.settings │ ├── Settings.Designer.cs │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── App.xaml ├── App.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs └── WordToPDF.csproj ├── Bin ├── WordConvertPDF.dll ├── Word转PDF V1.0.1.exe └── Microsoft.Office.Interop.Word.dll ├── WordConvertPDF ├── Properties │ └── AssemblyInfo.cs ├── WordConvertPDF.csproj └── WordToPDFHelper.cs ├── LICENSE ├── WordConvertPDF.sln └── .gitignore /HEAD: -------------------------------------------------------------------------------- 1 | 昨天有一朋友让我帮忙找一款Word转PDF的软件,今天自己捣鼓出点成果封装个Helper供大家使用 2 | 3 | 明天做一个实用小软件供大家使用~ 4 | -------------------------------------------------------------------------------- /WordConvertPDF.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunitian/WordConvertPDF/HEAD/WordConvertPDF.zip -------------------------------------------------------------------------------- /WordToPDF/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunitian/WordConvertPDF/HEAD/WordToPDF/icon.ico -------------------------------------------------------------------------------- /Bin/WordConvertPDF.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunitian/WordConvertPDF/HEAD/Bin/WordConvertPDF.dll -------------------------------------------------------------------------------- /Bin/Word转PDF V1.0.1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunitian/WordConvertPDF/HEAD/Bin/Word转PDF V1.0.1.exe -------------------------------------------------------------------------------- /Bin/Microsoft.Office.Interop.Word.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunitian/WordConvertPDF/HEAD/Bin/Microsoft.Office.Interop.Word.dll -------------------------------------------------------------------------------- /WordToPDF/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /WordToPDF/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /WordToPDF/App.xaml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /WordToPDF/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace WordToPDF 10 | { 11 | /// 12 | /// App.xaml 的交互逻辑 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /WordToPDF/MainWindow.xaml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | 9 | 10 | 11 |