using System.Collections.ObjectModel; using System.ComponentModel; using System.IO; using System.Linq; using System.Windows; using System.Windows.Controls; using System.Windows.Forms; namespace Compdfkit_Tools.PDFControl { public partial class EncryptionDialog : Window { public EncryptionDialog() { InitializeComponent(); } } public class FileNumConverter: System.Windows.Data.IValueConverter { public object Convert(object value, System.Type targetType, object parameter, System.Globalization.CultureInfo culture) { return $"Total {value} Files"; } public object ConvertBack(object value, System.Type targetType, object parameter, System.Globalization.CultureInfo culture) { return null; } } }