28 lines
1.2 KiB
C#
28 lines
1.2 KiB
C#
|
|
using DTS.Common.Interface;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using Xceed.Wpf.Toolkit.PropertyGrid.Attributes;
|
|||
|
|
|
|||
|
|
namespace DTS.Viewer.PSDReportSettings
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Interaction logic for PSDReportSettingsView.xaml
|
|||
|
|
/// </summary>
|
|||
|
|
public partial class PSDReportSettingsView : IPSDReportSettingsView
|
|||
|
|
{
|
|||
|
|
public PSDReportSettingsView()
|
|||
|
|
{
|
|||
|
|
InitializeComponent();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
//private IItemsSource _availablePassFilterTypes = new DTS.Common.Enums.Viewer.Reports.PassFilterTypeEnumItemSource();
|
|||
|
|
//public List<string> AvailablePassFilterTypes => _availablePassFilterTypes;
|
|||
|
|
|
|||
|
|
//private IItemsSource _availableWindowAveragingTypes = new DTS.Common.Enums.Viewer.Reports.WindowAveragingTypeEnumItemSource();
|
|||
|
|
//public IItemsSource AvailableWindowAveragingTypes => _availableWindowAveragingTypes;
|
|||
|
|
|
|||
|
|
//private IItemsSource _availableWindowTypes = new DTS.Common.Enums.Viewer.Reports.WindowTypeEnumItemSource();
|
|||
|
|
//public IItemsSource AvailableWindowTypes => _availableWindowTypes;
|
|||
|
|
public List<int> AvailableWindowWidths => new List<int>() { 512, 1024, 2048, 4096, 8192 };
|
|||
|
|
}
|
|||
|
|
}
|