-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
65 changed files
with
4,834 additions
and
702 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 1 addition & 18 deletions
19
examples/FrameworkTester/DesignTimes/WinBioAcquireFocusViewModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,10 @@ | ||
using FrameworkTester.ViewModels.Interfaces; | ||
using GalaSoft.MvvmLight.Command; | ||
|
||
namespace FrameworkTester.DesignTimes | ||
{ | ||
|
||
public sealed class WinBioAcquireFocusViewModel : IWinBioAcquireFocusViewModel | ||
public sealed class WinBioAcquireFocusViewModel : WinBioViewModel, IWinBioAcquireFocusViewModel | ||
{ | ||
|
||
public RelayCommand ExecuteCommand | ||
{ | ||
get; | ||
} | ||
|
||
public string Name | ||
{ | ||
get; | ||
} | ||
|
||
public string Result | ||
{ | ||
get; | ||
} | ||
|
||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 1 addition & 18 deletions
19
examples/FrameworkTester/DesignTimes/WinBioCloseSessionViewModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,10 @@ | ||
using FrameworkTester.ViewModels.Interfaces; | ||
using GalaSoft.MvvmLight.Command; | ||
|
||
namespace FrameworkTester.DesignTimes | ||
{ | ||
|
||
public sealed class WinBioCloseSessionViewModel : IWinBioCloseSessionViewModel | ||
public sealed class WinBioCloseSessionViewModel : WinBioViewModel, IWinBioCloseSessionViewModel | ||
{ | ||
|
||
public RelayCommand ExecuteCommand | ||
{ | ||
get; | ||
} | ||
|
||
public string Name | ||
{ | ||
get; | ||
} | ||
|
||
public string Result | ||
{ | ||
get; | ||
} | ||
|
||
} | ||
|
||
} |
18 changes: 1 addition & 17 deletions
18
examples/FrameworkTester/DesignTimes/WinBioEnumBiometricUnitsViewModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 35 additions & 0 deletions
35
examples/FrameworkTester/DesignTimes/WinBioEnumDatabasesViewModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
using System.Collections.ObjectModel; | ||
using FrameworkTester.ViewModels.Interfaces; | ||
using GalaSoft.MvvmLight.Command; | ||
using WinBiometricDotNet; | ||
|
||
namespace FrameworkTester.DesignTimes | ||
{ | ||
|
||
public sealed class WinBioEnumDatabasesViewModel : WinBioViewModel, IWinBioEnumDatabasesViewModel | ||
{ | ||
|
||
public RelayCommand CreateDatabaseCommand | ||
{ | ||
get; | ||
} | ||
|
||
public BiometricDatabase CurrentDatabase | ||
{ | ||
get; | ||
set; | ||
} | ||
|
||
public ObservableCollection<BiometricDatabase> Databases | ||
{ | ||
get; | ||
} | ||
|
||
public RelayCommand RemoveDatabaseCommand | ||
{ | ||
get; | ||
} | ||
|
||
} | ||
|
||
} |
20 changes: 20 additions & 0 deletions
20
examples/FrameworkTester/DesignTimes/WinBioEnumEnrollmentsViewModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
using System.Collections.Generic; | ||
using System.Collections.ObjectModel; | ||
using FrameworkTester.ViewModels.Interfaces; | ||
using GalaSoft.MvvmLight.Command; | ||
using WinBiometricDotNet; | ||
|
||
namespace FrameworkTester.DesignTimes | ||
{ | ||
|
||
public sealed class WinBioEnumEnrollmentsViewModel : WinBioViewModel, IWinBioEnumEnrollmentsViewModel | ||
{ | ||
|
||
public ObservableCollection<KeyValuePair<string, bool>> FingerPositions | ||
{ | ||
get; | ||
} | ||
|
||
} | ||
|
||
} |
18 changes: 1 addition & 17 deletions
18
examples/FrameworkTester/DesignTimes/WinBioOpenSessionViewModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 1 addition & 18 deletions
19
examples/FrameworkTester/DesignTimes/WinBioReleaseFocusViewModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,10 @@ | ||
using FrameworkTester.ViewModels.Interfaces; | ||
using GalaSoft.MvvmLight.Command; | ||
|
||
namespace FrameworkTester.DesignTimes | ||
{ | ||
|
||
public sealed class WinBioReleaseFocusViewModel : IWinBioReleaseFocusViewModel | ||
public sealed class WinBioReleaseFocusViewModel : WinBioViewModel, IWinBioReleaseFocusViewModel | ||
{ | ||
|
||
public RelayCommand ExecuteCommand | ||
{ | ||
get; | ||
} | ||
|
||
public string Name | ||
{ | ||
get; | ||
} | ||
|
||
public string Result | ||
{ | ||
get; | ||
} | ||
|
||
} | ||
|
||
} |
40 changes: 40 additions & 0 deletions
40
examples/FrameworkTester/DesignTimes/WinBioVerifyViewModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
using System.Collections.Generic; | ||
using System.Windows.Media.Imaging; | ||
using FrameworkTester.ViewModels.Interfaces; | ||
using WinBiometricDotNet; | ||
|
||
namespace FrameworkTester.DesignTimes | ||
{ | ||
|
||
public sealed class WinBioVerifyViewModel : WinBioViewModel, IWinBioVerifyViewModel | ||
{ | ||
|
||
public bool IsMatch | ||
{ | ||
get; | ||
} | ||
|
||
public RejectDetails RejectDetail | ||
{ | ||
get; | ||
} | ||
|
||
public uint UnitId | ||
{ | ||
get; | ||
} | ||
|
||
public FingerPosition SelectedFingerPosition | ||
{ | ||
get; | ||
set; | ||
} | ||
|
||
public IEnumerable<FingerPosition> FingerPositions | ||
{ | ||
get; | ||
} | ||
|
||
} | ||
|
||
} |
40 changes: 40 additions & 0 deletions
40
examples/FrameworkTester/DesignTimes/WinBioVerifyWithCallbackViewModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
using System.Collections.Generic; | ||
using System.Windows.Media.Imaging; | ||
using FrameworkTester.ViewModels.Interfaces; | ||
using WinBiometricDotNet; | ||
|
||
namespace FrameworkTester.DesignTimes | ||
{ | ||
|
||
public sealed class WinBioVerifyWithCallbackViewModel : WinBioViewModel, IWinBioVerifyWithCallbackViewModel | ||
{ | ||
|
||
public bool IsMatch | ||
{ | ||
get; | ||
} | ||
|
||
public RejectDetails RejectDetail | ||
{ | ||
get; | ||
} | ||
|
||
public uint UnitId | ||
{ | ||
get; | ||
} | ||
|
||
public FingerPosition SelectedFingerPosition | ||
{ | ||
get; | ||
set; | ||
} | ||
|
||
public IEnumerable<FingerPosition> FingerPositions | ||
{ | ||
get; | ||
} | ||
|
||
} | ||
|
||
} |
Oops, something went wrong.