mirror of
https://github.com/soukoku/ntwain.git
synced 2025-04-05 10:50:24 +08:00
Fixed sample error.
This commit is contained in:
parent
c1c61c471b
commit
f66f48b4e3
@ -326,7 +326,7 @@ namespace Sample.Winform
|
||||
|
||||
private void LoadPaperSize(ICapWrapper<SupportedSize> cap)
|
||||
{
|
||||
var list = cap.GetValues();
|
||||
var list = cap.GetValues().ToList();
|
||||
comboSize.DataSource = list;
|
||||
var cur = cap.GetCurrent();
|
||||
if (list.Contains(cur))
|
||||
@ -361,7 +361,7 @@ namespace Sample.Winform
|
||||
|
||||
private void LoadDepth(ICapWrapper<PixelType> cap)
|
||||
{
|
||||
var list = cap.GetValues();
|
||||
var list = cap.GetValues().ToList();
|
||||
comboDepth.DataSource = list;
|
||||
var cur = cap.GetCurrent();
|
||||
if (list.Contains(cur))
|
||||
|
Loading…
Reference in New Issue
Block a user