我需要在我的C#应用程序中集成扫描程序。我使用WIA在我的应用程序中完成了扫描程序的集成,但我想使用进度条显示扫描的状态。任何人都可以帮助我,我怎么能在我的C#windows应用程序中做到这一点。
答案 0 :(得分:1)
使用:dialog.ShowTransfer,您将能够获得当前扫描的百分比对话框
<script>
function doTheFunction(){
xmlhttp = new XMLHttpRequest();
xmlhttp.open("GET","URL_OF_PHP_FILE",true);
xmlhttp.send();
}
</script>
<button onclick"doTheFunction();">Run the script</button>
还有另一种选择,您可以使用BackgroundWorker来监控WIA扫描过程。 请查看此示例:from Code Project