最前面的话: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;
}