一、目標樣式 我們要實現上圖中的效果,需要如下的操作: 1.從工具欄上的”Smobiler Components”拖動一個Button控制項到窗體界面上 2.修改Button按鈕的屬性 a.Size屬性 設置控制項的寬度和高度,見下圖; b.BarcodeScanned事件代碼 3.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;
}