using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ips.Sps.Tools.FileConcats { public class FileConcatViewModel : INotifyPropertyChanged { public event PropertyChangedEventHandler PropertyChanged; [DisplayName("输出文件")] public string OutFile { get; set; } public BindingList FileList { get; set; } = new BindingList(); } public class FileConcatItem : INotifyPropertyChanged { public event PropertyChangedEventHandler PropertyChanged; [DisplayName("文件名")] public string FileName { get; set; } [DisplayName("前补零")] public int AddZeroPrev { get; set; } [DisplayName("后补零")] public int AddZeroBack { get; set; } } }