-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMainWindow.xaml.cs
More file actions
534 lines (489 loc) · 18.2 KB
/
MainWindow.xaml.cs
File metadata and controls
534 lines (489 loc) · 18.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
using Microsoft.Win32;
using System.ComponentModel;
using System.IO;
using System.Runtime.CompilerServices;
using System.Windows;
using System.Windows.Threading;
using System.Windows.Documents;
using System.Windows.Media;
using System.Windows.Input;
using System.Diagnostics;
using System.Reflection;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
namespace Office2PDF
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
///
public partial class MainWindow : System.Windows.Window
{
public MainWindowViewModel ViewModel { get; set; }
public enum LogLevel
{
Trace,
Info,
Warning,
Error
}
public MainWindow()
{
WindowStartupLocation = WindowStartupLocation.CenterScreen;
InitializeComponent();
ViewModel = new MainWindowViewModel();
DataContext = ViewModel;
LogRichTextBox.Document.Blocks.Clear();
LoadEmbeddedImage();
}
private void BrowseFromFolder_Click(object sender, RoutedEventArgs e)
{
var folderDialog = new OpenFolderDialog()
{
Title = "选择来源文件夹",
InitialDirectory = ViewModel.FromRootFolderPath
};
if (folderDialog.ShowDialog() == true)
{
ViewModel.FromRootFolderPath = folderDialog.FolderName;
}
}
private void BrowseToFolder_Click(object sender, RoutedEventArgs e)
{
var folderDialog = new OpenFolderDialog()
{
Title = "选择目标文件夹",
InitialDirectory = ViewModel.ToRootFolderPath
};
if (folderDialog.ShowDialog() == true)
{
ViewModel.ToRootFolderPath = folderDialog.FolderName;
}
}
private void OpenFromFolder_Click(object sender, RoutedEventArgs e)
{
if (Directory.Exists(ViewModel.FromRootFolderPath))
{
using (var process = new System.Diagnostics.Process())
{
process.StartInfo.FileName = "explorer.exe";
process.StartInfo.Arguments = ViewModel.FromRootFolderPath;
process.Start();
}
}
else
{
MessageBox.Show("来源文件夹不存在,请重新选择", "警告", MessageBoxButton.OK, MessageBoxImage.Warning);
}
}
private void OpenToFolder_Click(object sender, RoutedEventArgs e)
{
if (Directory.Exists(ViewModel.ToRootFolderPath))
{
using (var process = new System.Diagnostics.Process())
{
process.StartInfo.FileName = "explorer.exe";
process.StartInfo.Arguments = ViewModel.ToRootFolderPath;
process.Start();
}
}
else
{
MessageBox.Show("目标文件夹不存在,请重新选择", "警告", MessageBoxButton.OK, MessageBoxImage.Warning);
}
}
private void FolderTextBox_PreviewDragOver(object sender, DragEventArgs e)
{
if (e.Data.GetDataPresent(DataFormats.FileDrop))
{
e.Effects = DragDropEffects.Copy;
e.Handled = true;
}
}
private void FromFolderTextBox_Drop(object sender, DragEventArgs e)
{
if (e.Data.GetDataPresent(DataFormats.FileDrop))
{
string[] files = (string[])e.Data.GetData(DataFormats.FileDrop);
if (files.Length > 0)
{
string path = files[0];
if (Directory.Exists(path))
{
ViewModel.FromRootFolderPath = path;
}
else if (File.Exists(path))
{
ViewModel.FromRootFolderPath = Path.GetDirectoryName(path);
}
}
}
}
private void ToFolderTextBox_Drop(object sender, DragEventArgs e)
{
if (e.Data.GetDataPresent(DataFormats.FileDrop))
{
string[] files = (string[])e.Data.GetData(DataFormats.FileDrop);
if (files.Length > 0)
{
string path = files[0];
if (Directory.Exists(path))
{
ViewModel.ToRootFolderPath = path;
}
else if (File.Exists(path))
{
ViewModel.ToRootFolderPath = Path.GetDirectoryName(path);
}
}
}
}
private async void StartConvert_Click(object sender, RoutedEventArgs e)
{
try
{
ViewModel.CanStartConvert = false;
var fileTypeHandlers = new (string TypeName, bool IsConvert, string[] Extensions, Action<string, string[]> ConvertAction)[] {
("Word", ViewModel.IsConvertWord, [".doc", ".docx"], (typeName, files) => ConvertToPDF<WordApplication>(typeName, files)),
("Excel", ViewModel.IsConvertExcel,[".xls", ".xlsx"], (typeName, files) => ConvertToPDF<ExcelApplication>(typeName, files)),
("PPT", ViewModel.IsConvertPPT, [".ppt", ".pptx"], (typeName, files) => ConvertToPDF<PowerPointApplication>(typeName, files))
};
AppendLog($"==============开始转换==============");
foreach (var (typeName, isConvert, extensions, convertAction) in fileTypeHandlers)
{
try
{
if (isConvert)
{
AppendLog($"{typeName} 转换开始", LogLevel.Info);
var searchOption = ViewModel.IsConvertChildrenFolder ? SearchOption.AllDirectories : SearchOption.TopDirectoryOnly;
var files = Directory.EnumerateFiles(ViewModel.FromRootFolderPath, "*.*", searchOption)
.Where(file => extensions.Any(ext => file.EndsWith(ext, StringComparison.OrdinalIgnoreCase)));
if (!files.Any())
{
AppendLog($"无 {typeName} 文件", LogLevel.Warning);
}
else
{
await Task.Run(() => convertAction(typeName, files.ToArray()));
}
}
}
catch (Exception ex)
{
AppendLog($"{typeName} 转换错误:{ex.Message}", LogLevel.Error);
}
finally
{
if (isConvert)
{
AppendLog($"{typeName} 转换结束", LogLevel.Info);
}
}
}
}
catch (Exception ex)
{
AppendLog($"转换错误:{ex.Message}", LogLevel.Error);
}
finally
{
AppendLog($"==============转换结束==============\n");
ViewModel.CanStartConvert = true;
}
}
public void ConvertToPDF<T>(string typeName, string[] fromFilePaths) where T : IOfficeApplication, new()
{
using var application = new T();
try
{
AppendLog($"{typeName} 打开进程中...");
var numberFormat = $"D{fromFilePaths.Length.ToString().Length}";
foreach ((var index, var fromFilePath) in fromFilePaths.Index())
{
try
{
if (application is WordApplication wordApp)
{
wordApp.IsPrintRevisions = ViewModel.IsPrintRevisionsInWord;
}
else if (application is ExcelApplication excelApp)
{
excelApp.IsConvertOneSheetOnePDF = ViewModel.IsConvertOneSheetOnePDFInExcel;
excelApp.IsPrintToOneColumn = ViewModel.IsPrintToOneColumnInExcel;
}
application.OpenDocument(fromFilePath);
var toFilePath = GetToFilePath(ViewModel.FromRootFolderPath, ViewModel.ToRootFolderPath, fromFilePath, Path.GetFileName(fromFilePath));
application.SaveAsPDF(toFilePath);
AppendLog($"({index.ToString(numberFormat)}){typeName} 转换成功: {Path.GetRelativePath(ViewModel.ToRootFolderPath, toFilePath)}");
}
catch (Exception ex)
{
AppendLog($"({index.ToString(numberFormat)}){typeName} 转换出错:{fromFilePath} {ex.Message}", LogLevel.Error);
}
finally
{
application.CloseDocument();
}
}
}
catch (Exception e)
{
AppendLog(e.Message, LogLevel.Error);
}
finally
{
AppendLog($"{typeName} 所有文件已转换完毕,关闭进程中...");
}
}
private string GetToFilePath(string fromRootFolderPath, string toFolderRootPath, string fromFilePath, string toFileName)
{
var relativePath = !ViewModel.IsKeepFolderStructure ? "." : Path.GetRelativePath(fromRootFolderPath, Path.GetDirectoryName(fromFilePath) ?? "");
var toFolderPath = Path.Combine(toFolderRootPath, relativePath);
if (!Directory.Exists(toFolderPath)) Directory.CreateDirectory(toFolderPath);
return Path.Combine(toFolderPath, Path.ChangeExtension(toFileName, ".pdf"));
}
public void AppendLog(string message, LogLevel level = LogLevel.Trace)
{
Dispatcher.Invoke(() => // 在 UI 线程中更新日志
{
var paragraph = new System.Windows.Documents.Paragraph();
paragraph.Inlines.Add(new Run($"[{DateTime.Now:HH:mm:ss}] ") { Foreground = Brushes.Gray });
Brush color = Brushes.Black;
switch (level)
{
case LogLevel.Trace: color = Brushes.Gray; break;
case LogLevel.Info: color = Brushes.Green; break;
case LogLevel.Warning: color = Brushes.Orange; break;
case LogLevel.Error: color = Brushes.Red; break;
}
paragraph.Inlines.Add(new Run(message) { Foreground = color });
LogRichTextBox.Document.Blocks.Add(paragraph);
LogRichTextBox.ScrollToEnd();
});
}
private void Hyperlink_RequestNavigate(object sender, RequestNavigateEventArgs e)
{
System.Diagnostics.Process.Start(new System.Diagnostics.ProcessStartInfo
{
FileName = e.Uri.AbsoluteUri,
UseShellExecute = true
});
e.Handled = true;
}
private void LoadEmbeddedImage()
{
try
{
var assembly = Assembly.GetExecutingAssembly();
var resourceName = "Office2PDF.Resources.qrcode.png";
using (var stream = assembly.GetManifestResourceStream(resourceName))
{
if (stream != null)
{
var bitmap = new BitmapImage();
bitmap.BeginInit();
bitmap.StreamSource = stream;
bitmap.CacheOption = BitmapCacheOption.OnLoad;
bitmap.EndInit();
QrcodeForGHImage.Source = bitmap;
}
else
{
MessageBox.Show($"找不到嵌入资源: {resourceName}");
}
}
}
catch (Exception ex)
{
MessageBox.Show($"加载图片失败: {ex.Message}");
}
}
private void GongZhongHao_MouseEnter(object sender, MouseEventArgs e)
{
imagePopup.IsOpen = true;
}
private void GongZhongHao_MouseLeave(object sender, MouseEventArgs e)
{
imagePopup.IsOpen = false;
}
}
public class MainWindowViewModel : INotifyPropertyChanged
{
private string _fromFolderPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), "Office2PDF", "source");
public string FromRootFolderPath
{
get => _fromFolderPath;
set
{
if (_fromFolderPath != value)
{
_fromFolderPath = value;
OnPropertyChanged();
}
}
}
private string _toFolderPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), "Office2PDF", "output");
public string ToRootFolderPath
{
get => _toFolderPath;
set
{
if (_toFolderPath != value)
{
_toFolderPath = value;
OnPropertyChanged();
}
}
}
private bool _isConvertWord = true;
public bool IsConvertWord
{
get => _isConvertWord;
set
{
if (_isConvertWord != value)
{
_isConvertWord = value;
OnPropertyChanged();
UpdateIsConvertAll();
}
}
}
private bool _isConvertPPT = true;
public bool IsConvertPPT
{
get => _isConvertPPT;
set
{
if (_isConvertPPT != value)
{
_isConvertPPT = value;
OnPropertyChanged();
UpdateIsConvertAll();
}
}
}
private bool _isConvertExcel = true;
public bool IsConvertExcel
{
get => _isConvertExcel;
set
{
if (_isConvertExcel != value)
{
_isConvertExcel = value;
OnPropertyChanged();
UpdateIsConvertAll();
}
}
}
private bool _isConvertAll = true;
public bool IsConvertAll
{
get => _isConvertAll;
set
{
if (_isConvertAll != value)
{
_isConvertAll = value;
_isConvertWord = value;
_isConvertPPT = value;
_isConvertExcel = value;
OnPropertyChanged();
OnPropertyChanged(nameof(IsConvertWord));
OnPropertyChanged(nameof(IsConvertPPT));
OnPropertyChanged(nameof(IsConvertExcel));
}
}
}
private bool _isConvertChildrenFolder = true;
public bool IsConvertChildrenFolder
{
get => _isConvertChildrenFolder;
set
{
if (_isConvertChildrenFolder != value)
{
_isConvertChildrenFolder = value;
OnPropertyChanged();
}
}
}
private bool _isKeepFolderStructure = true;
public bool IsKeepFolderStructure
{
get => _isKeepFolderStructure;
set
{
if (_isKeepFolderStructure != value)
{
_isKeepFolderStructure = value;
OnPropertyChanged();
}
}
}
private bool _isPrintRevisionsInWord = true;
public bool IsPrintRevisionsInWord
{
get => _isPrintRevisionsInWord;
set
{
if (_isPrintRevisionsInWord != value)
{
_isPrintRevisionsInWord = value;
OnPropertyChanged();
}
}
}
private bool _isConvertOneSheetOnePDFInExcel = true;
public bool IsConvertOneSheetOnePDFInExcel
{
get => _isConvertOneSheetOnePDFInExcel;
set
{
if (_isConvertOneSheetOnePDFInExcel != value)
{
_isConvertOneSheetOnePDFInExcel = value;
OnPropertyChanged();
}
}
}
private bool _isPrintToOneColumnInExcel = false;
public bool IsPrintToOneColumnInExcel
{
get => _isPrintToOneColumnInExcel;
set
{
if (_isPrintToOneColumnInExcel != value)
{
_isPrintToOneColumnInExcel = value;
OnPropertyChanged();
}
}
}
private bool _canStartConvert = true;
public bool CanStartConvert
{
get => _canStartConvert;
set
{
if (_canStartConvert != value)
{
_canStartConvert = value;
OnPropertyChanged();
}
}
}
private void UpdateIsConvertAll()
{
_isConvertAll = IsConvertWord && IsConvertPPT && IsConvertExcel;
OnPropertyChanged(nameof(IsConvertAll));
}
public event PropertyChangedEventHandler? PropertyChanged;
protected virtual void OnPropertyChanged([CallerMemberName] string propertyName = "")
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
}
}