- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我写了一个快速示例程序来更好地理解 Janam 扫描枪,但是我遇到了我从未见过的问题,尽管我认为可能是由于在不同的线程上并在它们之间传递值造成的。所以我认为我没有正确使用委托(delegate)。并提供帮助。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using Scanner;
namespace ScannerTest
{
public partial class Form1 : Form
{
//Delegates
private delegate void RefreshValuesDelegate();
private delegate void AddScannedItemDelegate(Item item);
// SINGLETON //////////////////////////////////////
private static Form1 instance = null;
public static Form1 GetInstance()
{
if (instance == null)
instance = new Form1();
return instance;
}
///////////////////////////////////////////////////
public Form1()
{
InitializeComponent();
}
void Form1_Load(object sender, EventArgs e)
{
/**************/
//SCANNER ACTIVATE
GlobalScanner.GetInstance().Close();
GlobalScanner.GetInstance().BarcodeDelegateDirector = new GlobalScanner.BarcodeDelegate(Form1.GetInstance().processScannedBarcode);
GlobalScanner.GetInstance().Open();
/**************/
}
// Add the new part unless the part number contains
// spaces. In that case cancel the add.
private void button1_Click(object sender, EventArgs e)
{
if (textBox1.Text.Equals("") || textBox2.Text.Equals(""))
{
MessageBox.Show("item names or barcodes cannot be blank.");
}
else
{
Item temp = new Item(textBox1.Text, textBox2.Text, DateTime.Now);
if (temp.ItemCheck == true)
{
AddToList(temp);
}
}
}
public void processScannedBarcode(string scannedBarcode)
{
if (scannedBarcode != null && scannedBarcode.Length > 0) // 0 = SUCCESS Symbol.Results.SUCCESS
{
Item temp = new Item();
temp.ItemName = "N/A";
temp.BarcodeNumber = scannedBarcode;
String tempDate = DateTime.Now.ToShortDateString();
String tempTime = DateTime.Now.ToShortTimeString();
temp.ScanDate = tempDate + tempTime;
AddScannedItem(temp);
}
}
private void AddScannedItem(Item item)
{
if (this.InvokeRequired == true)
{
this.Invoke(new AddScannedItemDelegate(AddScannedItem), new object[] { item });
}
else
{
this.textBox2.Text = item.BarcodeNumber;
this.textBox1.Text = item.ItemName; // description not available
item.ScanDate = DateTime.Now.ToLongDateString();
//DateTime readDate = DateTime.Now;
//cargo.SetReadDate(readDate);
RefreshValues();
AddToList(item);
}
}
private void AddToList(Item item)
{
string tempItem = item.ItemName;
string tempBarcode = item.BarcodeNumber;
string tempDate = item.ScanDate;
ListViewItem newRow = new ListViewItem(tempItem);
newRow.SubItems.Add(tempBarcode);
newRow.SubItems.Add(tempDate);
listView1.Items.Add(newRow);
RefreshValues();
//MessageBox.Show(string.Format("TextBox1: {0} TextBox2: {1}", tempItem, tempBarcode));
textBox2.Text = "";
textBox1.Text = "";
}
public void RefreshValues()
{
if (this.InvokeRequired == true)
{
this.Invoke(new RefreshValuesDelegate(RefreshValues));
}
else
{
listView1.Refresh();
}
}
}
// A simple business object for example purposes.
public class Item
{
private string name;
private string number;
private string date;
private bool check = true;
public Item() { }
public Item(string nameForItem, string numberForBarcode, DateTime scandate)
{
ItemName = nameForItem;
BarcodeNumber = numberForBarcode;
date = scandate.ToShortDateString();
}
public string ItemName
{
get
{
return name;
}
set
{
if (value.Length <= 45)
{
name = value;
}
else
{
MessageBox.Show("Item name to long. Must be less than 45 characters.");
ItemCheck = false;
}
}
}
public string BarcodeNumber
{
get
{
return number;
}
set
{
if (value.Length <= 20)
{
number = value;
}
else
{
MessageBox.Show("Barcode is to long. Must be less than 20 digits.");
ItemCheck = false;
}
}
}
public string ScanDate
{
get
{
return date;
}
set
{
date = value;
}
}
public bool ItemCheck
{
get
{
return check;
}
set
{
check = value;
}
}
}
}
因此手动输入值可以正常工作,但是当扫描仪被激活并读入一个值时。调试器显示在代码通过列表时设置和存储的正确值,但是屏幕上没有显示来自扫描仪的任何内容,也不会像手动键入时那样将值保存到 ListView 中。
就像我之前说的那样,我认为委托(delegate)和扫描器线程将值传递给它不喜欢的主线程是一个问题。
提前感谢您的帮助。
这是手动输入值的 View
这是正在使用的扫描仪的 View 。我取消了对消息框的注释,这样您就可以看到它正在拾取一些东西。
回答某人的问题:
这是供那些想要检查它的人使用的全局扫描仪。
using System;
using System.Linq;
using System.Collections.Generic;
using System.Text;
namespace Scanner
{
public class GlobalScanner
{
#region About using the delegate in this class
/* We are actually using one central class to do the scanning, but user can scan from different screens.
* If we don't have a delegate we will have the following scenario. We scan the barcode, the barcode will be
* captured in our scanner implementation class "For example: IntermecBarcodeScanner" and we will have no way to return
* the barcode back to the scanning screen. The delegate will actually help us to do that job. The delegate will
* be associated with a method inside the scanning form. It will carry the scanned barcode over to that method
* inside the scanning form.
*
* We need 3 main things to get the delegate working:
* 1- Declare a delegate variable
public delegate void BarcodeDelegate(string barcode);
* 2- Initialize a delegate and associate it with the appropropriate method in the scanning form:
* Example: GlobalScanner.GetInstance().BarcodeDelegateDirector = new GlobalScanner.BarcodeDelegate(this.ScanBarcodeEvent);
* We need the above line of code to be in the scanning form. That's how we associate the ScanBarcodeEvent() method
* with the delegate that is in the GlobalScanner class.
* 3- In GlobalScanner class we created two variables to help us to connect to the scanner implementation class such as
* the IntermecBarcodeScanner. Those two variables are: barcodeDelegateInstance and barcodeData
*/
#endregion
//Declare a delegate
public delegate void BarcodeDelegate(string barcode);
private IBarcodeScanner scanner = null;
// SINGLETON //////////////////////////////////////
private static GlobalScanner instance = null;
public static GlobalScanner GetInstance()
{
if (instance == null)
{
instance = new GlobalScanner();
}
return instance;
}
// ////////////////////////////////////////////////
private BarcodeDelegate barcodeDelegateInstance = null;
//BarcodeDelegateDirector will be accessed to associate the method
//that's in the scanning form with the delegate
public BarcodeDelegate BarcodeDelegateDirector
{
get { return barcodeDelegateInstance; }
set { barcodeDelegateInstance = value; }
}
//We also created this variable to set the barcode value from other classes such as IntermecBarcodeScanner
private string barcodeData;
public string BarcodeData
{
get { return barcodeData; }
set
{
barcodeData = value;
barcodeDelegateInstance(barcodeData); //barcodeData is the scanned barcode and it comes from the GlobalScanner implementation
}
}
public void Open()
{
String deviceName = Platform.GetOEMInfo();
if (deviceName != null)
{
if (scanner == null)
{
if (deviceName.Equals(Global.INTERMEC_DEVICE_1) || deviceName.Equals(Global.INTERMEC_DEVICE_2) || deviceName.Equals(Global.INTERMEC_DEVICE_3))
scanner = new IntermecBarcodeScanner();
else if (deviceName.Equals(Global.JANAM_DEVICE_1) || deviceName.Equals(Global.JANAM_DEVICE_2) || deviceName.Equals(Global.JANAM_DEVICE_3))
scanner = new JanamXMBarcodeScanner();
else if (deviceName.Equals(Global.JANAM_XG_DEVICE_1) || deviceName.Equals(Global.JANAM_XG_DEVICE_2) || deviceName.Equals(Global.JANAM_XG_DEVICE_3))
scanner = new JanamXGBarcodeScanner();
else if (deviceName.Equals(Global.MOTOROLA_DEVICE_1) || deviceName.Equals(Global.MOTOROLA_DEVICE_2) || deviceName.Equals(Global.MOTOROLA_DEVICE_3))
scanner = new MotorolaBarcodeScanner();
}
scanner.Open();
}
}
public void Close()
{
if (scanner != null)
{
scanner.Close();
}
}
}
}
最佳答案
如果您认为这是一个线程间问题,您可以使用锁对象来确保只有一个线程可以访问事件数据:
一个全局性的 对象锁定对象 = 新对象();必须定义并在 AddToList 中用 锁(锁对象) { }以上确保一次只有一个 AddToList 在运行。
我在使用条形码扫描仪的委托(delegate)中看到的另一个差异是委托(delegate)用法:在我的代码中,我首先声明委托(delegate)的新 var,然后调用 var 上的 invoke。但这不应该对功能产生影响。
关于C# 移动扫描器值表现得很奇怪,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18082747/
我正在用 C++ 开发一个程序,我必须实现一个 cron。由于不同的原因,这个 cron 应该每小时和每 24 小时执行一次。我的第一个想法是创建一个独立的 pthread 并在每次 1h 内休眠。这
我需要向同一场景几何添加多个体素(立方体等于),但每个体素具有不同的纹理。 我的体素超过 500 个,导致性能出现严重错误。 这是我的代码: texture = crearTextura(voxel.
对于 MySQL 数据库,我有 2 个场景,我不确定该选择哪一个,并且对于一些表我也遇到了同样的困境。 我正在制作一个仅供成员(member)访问的网络应用程序。每个成员都有自己的交易、费用和“列表”
我想知道一个简单的事情: 当设置一个被所有 child 继承的样式时,是否建议最具体? Structure: html > body > parent_content > wrapper > p 我想
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
这些天我正在阅读有关 JPA 的内容。我了解到可以在 JPQL 中使用 explicit 或 implicit JOIN。 显式加入 em.createQuery(“SELECT b.title, p
我有一种情况需要连接几个字符串以形成一个类的 id。基本上,我只是在列表中循环以获取对象的 ToString 值,然后将它们连接起来。 foreach (MyObject o in myList)
我正在检查我的游戏在拖尾效果下的性能会降低多少。但我注意到每秒的操作次数更多了。这怎么可能? 这是怎么回事... context.fillRect(0, 0, 500, 500); // cl
如果我可以选择使用全局变量或传递变量,哪个选项在速度和内存使用方面更好? // global variable function func(){ global $var; echo $var;
我有一个类似这样的表“tbl”:ID bigint(20) - 主键,自增字段1字段2字段3 该表有 60 万多行。 查询:SELECT * from tbl ORDER by ID LIMIT 60
谁能告诉我,我如何比较 TSP 最优和启发式算法?我已经实现了 TSP,但不知道如何比较它们。事实上,我怎样才能找到 TSP 的最优成本?有什么方法或猜测吗? 谢谢 最佳答案 用众所周知的基准实例检查
我有一个 NSTextStorage里面有长文本(比如一本书有 500 页,当前字体在设备上超过 9000 页)。我以这种方式为 textcontainer 分发此文本: let textStorag
我有一个根据邮政编码搜索项目的应用程序。 在搜索邮政编码时,我返回了来自该城市/社区的所有产品(通过解析邮政编码完成)。 我现在需要根据与原始邮政编码的距离对这些产品进行分类。 我将纬度/经度存储在数
我有许多进程(大约100到1000个进程),每个进程都必须向其他进程(例如大约10个)发送一些数据。 (通常,但不一定总是这样,如果A发送给B,B也发送给A。)每个进程都知道必须从哪个进程接收多少数据
我知道无状态组件使用起来更舒服(在特定场景下),但是既然你不能使用shouldComponentUpdate,这是否意味着组件将在每次props更改时重新渲染?我的问题是,使用带有智能 shouldC
我正在研究 Google Pagespeed 的加速页面加载时间指南列表。其中之一是缩小 CSS 和 JS 文件。 由于这些文件经常更改,我正在考虑使用 PHP 脚本根据请求(来自浏览器)即时缩小此脚
我正在尝试从下表构建 SQL 查询(示例): Example of table with name "performances" 这是带有运动表现的表格。我想从这个表中选择每个学科和一组一个或多个类别
假设我们有一个字符串 var "sA",我想检查字符串 "123"是否在 sA 的末尾。 什么更好,为什么: if(sA.length() > 2) sA.substr(sA.length()-3)
关于受这篇文章启发的可参数化查询 LINQ group by property as a parameter我获得了一个很好的参数化查询,但在性能上有一个缺点。 public static void
| 和| 之间有什么主要区别吗?和 + 从长远来看会影响代码的性能吗?或者都是 O(1)?我正在使用的代码是这样的: uint64_t dostuff(uint64_t a,uint64_t b){
我是一名优秀的程序员,十分优秀!