码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2016-10-21 16:37:02      阅读:282      评论:0      收藏:0      [点我收藏+]

标签:控件   平台   drag   nbsp   修改   net   代码   开发app   语言   

最前面的话: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学习日志:实现在手机上调用摄像头进行扫描

标签:控件   平台   drag   nbsp   修改   net   代码   开发app   语言   

原文地址:http://www.cnblogs.com/amanda112/p/5984720.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!