我用的是测试卡,这是刷卡后的输出,没问题
但是当我试图通过提示它到消息框来获取刷卡的数据时,这将是输出
我怎样才能解决这个问题?我期望输出与第一张图像相同,它也将是消息框的消息
这是我的代码:
private void CreditCardProcessor_Load(object sender, EventArgs e)
{
KeyPreview = true;
KeyPress += CreditCardProcessor_KeyPress;
}
private bool inputToLabel = true;
private void CreditCardProcessor_KeyPress(object sender, KeyPressEventArgs e)
{
if (inputToLabel)
{
label13.Text = label13.Text + e.KeyChar;
e.Handled = true;
}
else
{
e.Handled = false;
}
MessageBox.Show(label13.Text);
}
简而言之,我想在刷卡后运行一个函数,并使用它的数据在我的函数中使用。:)