123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- 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
- {
- /// <summary>
- /// CPDFBorderWidthUI.xaml 的交互逻辑
- /// </summary>
- 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<int> list = new List<int>();
- 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));
- }
- }
- }
|