using System.Collections.Generic; using System.ComponentModel; using System.Runtime.CompilerServices; using System.Windows; using System.Windows.Controls; namespace ComPDFKit.Controls.Common { public partial class CustomProgressBarControl : UserControl,INotifyPropertyChanged { public static readonly DependencyProperty ProgressValueProperty = DependencyProperty.Register(nameof(ProgressValue), typeof(int), typeof(CustomProgressBarControl), new PropertyMetadata(0)); public int ProgressValue { get => (int)GetValue(ProgressValueProperty); set => SetValue(ProgressValueProperty, value); } public static readonly DependencyProperty ProgressMaxValueProperty = DependencyProperty.Register(nameof(ProgressMaxValue), typeof(int), typeof(CustomProgressBarControl), new PropertyMetadata(100)); public int ProgressMaxValue { get => (int)GetValue(ProgressMaxValueProperty); set => SetValue(ProgressMaxValueProperty, value); } public static readonly DependencyProperty ProgressBarHeightProperty = DependencyProperty.Register(nameof(ProgressBarHeight), typeof(double), typeof(CustomProgressBarControl), new PropertyMetadata(5.0)); public double ProgressBarHeight { get => (double)GetValue(ProgressBarHeightProperty); set => SetValue(ProgressBarHeightProperty, value); } public CustomProgressBarControl() { InitializeComponent(); Grid.DataContext = this; } public event PropertyChangedEventHandler PropertyChanged; protected virtual void OnPropertyChanged([CallerMemberName] string propertyName = null) { PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName)); } protected void UpdateProper(ref T properValue, T newValue, [CallerMemberName] string properName = "") { if (object.Equals(properValue, newValue)) return; properValue = newValue; OnPropertyChanged(properName); } } }