当我单击按钮时,我试图生成随机整数值(条形码)。然后,我正在检查两个表(库存,单位),以确定新条形码是否已经存在。如果它是唯一的,新的条形码将被写在文本框中。
一切正常,但是当我单击另一种形式的texbox时,条形码消失了。
PS:我在全局区域中将newBarcode定义为Integer。
private void btnBarkodOlustur_Click(object sender, EventArgs e)
{
BarcodeGenerator();
string _newBarcode = newBarcode.ToString();
if (context.Stocks.Any(c => c.Barcode == _newBarcode) || context.Units.Any(c => c.Unit == _newBarcode))
{
BarcodeGenerator();
return;
}
else
{
txtBarcode.Text = _newBarcode;
}
}
private void BarcodeGenerator()
{
Random rnd = new Random();
newBarcode = rnd.Next(10000000, 99999999);
}
答案 0 :(得分:0)
我已经对您的代码进行了一些修改。单击该按钮时,将生成条形码。尽管条形码不是唯一的,但它将继续生成条形码,直到唯一为止。然后它将条形码值分配给Text
的{{1}}属性。
txtBarcode