首页 > 代码库 > .Net语言 APP开发平台——Smobiler学习日志:实现在手机上调用摄像头进行扫描

.Net语言 APP开发平台——Smobiler学习日志:实现在手机上调用摄像头进行扫描

最前面的话:Smobiler是一个在VS环境中使用.Net语言来开发APP的开发平台,也许比Xamarin更方便
 
样式一

一、目标样式

技术分享

我们要实现上图中的效果,需要如下的操作:

1.从工具栏上的”Smobiler Components”拖动一个Button控件到窗体界面上

技术分享

2.修改Button按钮的属性

a.Size属性

设置控件的宽度和高度,见下图;

技术分享

b.BarcodeScanned事件代码

VB:
   Private Sub BarcodeButton1_BarcodeScanned(sender As Object, e As BarcodeData)Handles BarcodeButton1.BarcodeScanned
       Dim strScan As String = e.Barcode
       TextBox3.Text = strScan
   End Sub
C#:
    private void BarcodeButton1_BarcodeScanned(object sender, BarcodeData e)
    {
        string strScan = e.Barcode;        
        Label10.Text = strScan;
    }

3.Smobiler窗体设计界面显示效果

技术分享

二、手机效果显示

技术分享 技术分享 技术分享

.Net语言 APP开发平台——Smobiler学习日志:实现在手机上调用摄像头进行扫描