using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
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.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace Compdfkit_Tools.Common
{
///
/// CPDFBorderWidthUI.xaml 的交互逻辑
///
public partial class CPDFThicknessUI : UserControl, INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
public event EventHandler ThicknessChanged;
private int _thickness = 1;
public int Thickness
{
get
{
return _thickness;
}
set
{
_thickness = value;
DropDownNumberBoxControl.SelectValueItem(_thickness);
OnPropertyChanged(nameof(Thickness));
OnThicknessChanged();
}
}
public CPDFThicknessUI()
{
InitializeComponent();
this.DataContext = this;
InitPresetNumberArray();
}
public void InitPresetNumberArray()
{
List list = new List();
for(int i = 1; i <= 10;i++)
{
list.Add(i);
}
DropDownNumberBoxControl.InitPresetNumberArray(list);
}
private void OnThicknessChanged()
{
ThicknessChanged?.Invoke(this, EventArgs.Empty);
}
protected void OnPropertyChanged(string propertyName)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
}
}