From 6370d9c38bc956912daa80656cf1458382227432 Mon Sep 17 00:00:00 2001 From: soukoku Date: Fri, 14 Nov 2014 23:09:12 -0500 Subject: [PATCH] Added cap search in wpf sample. --- Tests/Tester.WPF/MainWindow.xaml | 14 +++++-- Tests/Tester.WPF/MainWindow.xaml.cs | 12 +----- Tests/Tester.WPF/ViewModels/CapVM.cs | 10 ++--- Tests/Tester.WPF/ViewModels/DSVM.cs | 60 +++++++++++++++++++++++++++- 4 files changed, 74 insertions(+), 22 deletions(-) diff --git a/Tests/Tester.WPF/MainWindow.xaml b/Tests/Tester.WPF/MainWindow.xaml index e82fc8f..943e98d 100644 --- a/Tests/Tester.WPF/MainWindow.xaml +++ b/Tests/Tester.WPF/MainWindow.xaml @@ -6,6 +6,7 @@ Style="{StaticResource AppWindow}"> + @@ -17,7 +18,7 @@ - @@ -34,7 +35,12 @@ - + @@ -48,7 +54,7 @@ - @@ -64,7 +70,7 @@ - new CapVM(dsId, o)).OrderBy(o => o.Name).ToList(); - CapList.ItemsSource = caps; - } - } - else - { - CapList.ItemsSource = null; + dsId.Open(); } } diff --git a/Tests/Tester.WPF/ViewModels/CapVM.cs b/Tests/Tester.WPF/ViewModels/CapVM.cs index ef9db86..76f2095 100644 --- a/Tests/Tester.WPF/ViewModels/CapVM.cs +++ b/Tests/Tester.WPF/ViewModels/CapVM.cs @@ -17,17 +17,17 @@ namespace Tester.WPF MethodInfo _getCurrentMethod; MethodInfo _setMethod; - public CapVM(DSVM ds, CapabilityId cap) + public CapVM(DataSource ds, CapabilityId cap) { - _ds = ds.DS; + _ds = ds; Cap = cap; - Supports = ds.DS.CapQuerySupport(cap); + Supports = ds.CapQuerySupport(cap); var capName = cap.ToString(); - var wrapProperty = ds.DS.GetType().GetProperty(capName); + var wrapProperty = ds.GetType().GetProperty(capName); if (wrapProperty != null) { - _wrapper = wrapProperty.GetGetMethod().Invoke(ds.DS, null); + _wrapper = wrapProperty.GetGetMethod().Invoke(ds, null); var wrapperType = _wrapper.GetType(); _getMethod = wrapperType.GetMethod("Get"); _getCurrentMethod = wrapperType.GetMethod("GetCurrent"); diff --git a/Tests/Tester.WPF/ViewModels/DSVM.cs b/Tests/Tester.WPF/ViewModels/DSVM.cs index 0d20246..3ad0b26 100644 --- a/Tests/Tester.WPF/ViewModels/DSVM.cs +++ b/Tests/Tester.WPF/ViewModels/DSVM.cs @@ -1,17 +1,73 @@ -using NTwain; +using GalaSoft.MvvmLight; +using NTwain; using NTwain.Data; +using System.Collections.Generic; +using System.Collections.ObjectModel; +using System.ComponentModel; +using System.Linq; +using System.Windows.Data; namespace Tester.WPF { /// /// Wraps a data source as view model. /// - class DSVM + class DSVM : ViewModelBase { public DataSource DS { get; set; } public string Name { get { return DS.Name; } } public string Version { get { return DS.Version.Info; } } public string Protocol { get { return DS.ProtocolVersion.ToString(); } } + + ICollectionView _capView; + public DSVM() + { + Caps = new ObservableCollection(); + _capView = CollectionViewSource.GetDefaultView(Caps); + _capView.SortDescriptions.Add(new System.ComponentModel.SortDescription("Name", System.ComponentModel.ListSortDirection.Ascending)); + _capView.Filter = FilterCapRoutine; + } + + private bool FilterCapRoutine(object obj) + { + if (!string.IsNullOrWhiteSpace(CapFilter)) + { + var vm = obj as CapVM; + if (vm != null) + { + return vm.Name.IndexOf(CapFilter, System.StringComparison.OrdinalIgnoreCase) > -1; + } + } + return true; + } + + public void Open() + { + Caps.Clear(); + var rc = DS.Open(); + //rc = DGControl.Status.Get(dsId, ref stat); + if (rc == ReturnCode.Success) + { + foreach (var c in DS.SupportedCaps.Select(o => new CapVM(DS, o))) + { + Caps.Add(c); + } + } + } + + private string _capFilter; + + public string CapFilter + { + get { return _capFilter; } + set + { + _capFilter = value; + _capView.Refresh(); + } + } + + public ObservableCollection Caps { get; private set; } } }