123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181 |
- using ComPDFKit.PDFDocument;
- using ComPDFKit.Controls.Common;
- using ComPDFKit.Controls.Helper;
- using System;
- using System.Collections.Generic;
- using System.Collections.ObjectModel;
- using System.ComponentModel;
- using System.Linq;
- using System.Runtime.CompilerServices;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows;
- using System.Windows.Controls;
- using System.Windows.Data;
- using System.Windows.Documents;
- using System.Windows.Forms;
- using System.Windows.Input;
- using System.Windows.Media;
- using System.Windows.Media.Imaging;
- using System.Windows.Navigation;
- using System.Windows.Shapes;
- using DataGrid = System.Windows.Controls.DataGrid;
- using UserControl = System.Windows.Controls.UserControl;
- namespace ComPDFKit.Controls.PDFControl
- {
- /// <summary>
- /// Interaction logic for RemoveWatermarkListControl.xaml
- /// </summary>
- public partial class RemoveWatermarkListControl : UserControl, INotifyPropertyChanged
- {
- private int _fileNumText;
- public int FileNumText
- {
- get => _fileNumText;
- set
- {
- if (UpdateProper(ref _fileNumText, value))
- IsEnsure = _fileNumText > 0;
- }
- }
- private ObservableCollection<FileInfoWithRange> _fileInfoDataList;
- public ObservableCollection<FileInfoWithRange> FileInfoDataList
- {
- get { return _fileInfoDataList; }
- set
- {
- _fileInfoDataList = value;
- _fileInfoDataList.CollectionChanged += (sender, args) =>
- {
- FileNumText = _fileInfoDataList.Count;
- };
- }
- }
- public static readonly DependencyProperty IsEnsureProperty =
- DependencyProperty.Register(nameof(IsEnsure), typeof(bool), typeof(RemoveWatermarkListControl), new PropertyMetadata(false));
- public bool IsEnsure
- {
- get => (bool)GetValue(IsEnsureProperty);
- private set
- {
- SetValue(IsEnsureProperty, value);
- }
- }
- public RemoveWatermarkListControl()
- {
- InitializeComponent();
- DataContext = this;
- }
- private void UserControl_Loaded(object sender, RoutedEventArgs e)
- {
- FileInfoDataList = new ObservableCollection<FileInfoWithRange>();
- FileDataGrid.ItemsSource = FileInfoDataList;
- }
- public event PropertyChangedEventHandler PropertyChanged;
- protected virtual void OnPropertyChanged(string propertyName = null)
- {
- PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
- }
- protected bool UpdateProper<T>(ref T properValue,
- T newValue,
- [CallerMemberName] string properName = "")
- {
- if (object.Equals(properValue, newValue))
- return false;
- properValue = newValue;
- OnPropertyChanged(properName);
- return true;
- }
- private void AddFilesBtn_Click(object sender, RoutedEventArgs e)
- {
- var openFileDialog = new OpenFileDialog();
- openFileDialog.Multiselect = true;
- openFileDialog.Filter = "PDF Files (*.pdf)|*.pdf";
- if (openFileDialog.ShowDialog() == DialogResult.OK)
- {
- foreach (string filePath in openFileDialog.FileNames)
- {
- CPDFDocument document = CPDFDocument.InitWithFilePath(filePath);
- if(document == null)
- {
- continue;
- }
- if (document.IsLocked)
- {
- PasswordWindow passwordWindow = new PasswordWindow();
- passwordWindow.InitDocument(document);
- passwordWindow.Owner = Window.GetWindow(this);
- passwordWindow.PasswordDialog.SetShowText(filePath + " is encrypted.");
- passwordWindow.ShowDialog();
- if (document.IsLocked)
- {
- document.Release();
- continue;
- }
- }
- List<int> pageRangeList = new List<int>();
- for (int i = 0; i < document.PageCount; i++)
- {
- pageRangeList.Add(i + 1);
- }
- FileInfoDataList.Add(new FileInfoWithRange
- {
- Document = document,
- Name = document.FileName,
- Size = CommonHelper.GetFileSize(filePath),
- Path = document.FilePath,
- PageRangeList = pageRangeList
- });
- }
- }
- }
- private void RemoveBtn_Click(object sender, RoutedEventArgs e)
- {
- if (FileDataGrid.SelectedItems.Count == 0)
- {
- foreach(var item in FileInfoDataList)
- {
- item.Document.Release();
- }
- FileInfoDataList.Clear();
- return;
- }
- var selectedItems = FileDataGrid.SelectedItems;
- var selectedItemsList = selectedItems.Cast<FileInfoWithRange>().ToList();
- foreach (var item in selectedItemsList)
- {
- item.Document.Release();
- FileInfoDataList.Remove(item);
- }
- }
- private void FileDataGrid_SelectionChanged(object sender, SelectionChangedEventArgs e)
- {
- var dataGrid = sender as DataGrid;
- if (dataGrid != null)
- {
- RemoveBtn.Content = dataGrid.SelectedItems.Count > 0 ? LanguageHelper.SecurityManager.GetString("Button_RemoveSelected") : LanguageHelper.SecurityManager.GetString("Button_RemoveAll");
- }
- }
- private void FileDataGrid_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
- {
- FileDataGrid.UnselectAll();
- }
- }
- }
|