0

プログラムは正常に動作します。プロンプトが表示され、「Invalid RFID」がタップされると、Invalid RFID メッセージがポップアップ表示され、再度スキャンできます。ただし、RFID が受け入れられた場合は、プロンプトを自動的に閉じてください。このプログラムでは、プロンプトは自動的に閉じません。プロンプトを自動的に閉じるには何を追加する必要がありますか?

private void serialPort1_DataReceived(object sender, SerialDataReceivedEventArgs e)
    {
        string ramses = serialPort1.ReadLine();
        SetRFIDText(ramses);

    }

    private string dotRFID = "";
    private bool shouldClose = false;

    protected void SetRFIDText(string input)
    {
        this.Invoke(new Function(delegate()
        {
            string Hexed = new LasalleRFIDComputerRentals.BLL.DAL.Utils().HexIt(input);

            dotRFID = Hexed.Trim();
            txtRFID.Text = Hexed.Trim();


            if (txtRFID.Text.Trim() == "")
            {
                MessageBox.Show(this, "Please provide the member's RFID.", "Save Member Information", MessageBoxButtons.OK);
                txtRFID.Focus();
                return;
            }

            CustomerInfo customer = new Customer().GetCustomerByRFID(txtRFID.Text);
            if (customer.CustomerID <= 0)
            {
                MessageBox.Show(this, "Incorrect RFID.", "Validation", MessageBoxButtons.OK);
                return;
            }
            else
            {

                txtRFID.Text = "";



                if (_parentForm == "StandBy")
                {
                    Utils.CurrentCustomer.CustomerInfo = customer;
                    frmStandBy form = (frmStandBy)this.Owner;
                    form.xResult = "OK";
                    this.Close();

                }

            }
           }));

    }

this.Close();一番下(下)で使ってみたのですが、form.xResult = "OK";ぶら下がってしまいます。ヘルプ!

4

1 に答える 1

0

さて、私はそれを動作させることができましThis.Close();This.Hide();

于 2013-03-01T08:29:10.103 に答える