using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ips.Sps.Tools.SignalDdces { public class SignalDdcViewModel : INotifyPropertyChanged { public event PropertyChangedEventHandler PropertyChanged; [DisplayName("输入文件")] public string FileIn { get; set; } [DisplayName("输出路径")] public string OutDir { get; set; } [DisplayName("采样率")] public double Fs { get; set; } [DisplayName("实数")] public bool Real { get; set; } [DisplayName("GPU")] public bool Gpu { get; set; } public BindingList DdcItems { get; set; } = new BindingList(); } public class SignalDdcItem : INotifyPropertyChanged { public event PropertyChangedEventHandler PropertyChanged; [DisplayName("频偏(MHz)")] public double Ffc { get; set; } [DisplayName("抽取倍数")] public int Mutil { get; set; } } }