private void btnRight_Click(object sender, EventArgs e)
        {
            int _k = 0;

            if (lbMonAn.SelectedIndices.Count > 0)
            {
                for (int _i = 0; _i < lbMonAn.SelectedIndices.Count; _i++)
                {
                    _k = 0;

                    for (int _j = 0; _j < _listThucDon.Count(); _j++)
                    {
                        if (_listFood[lbMonAn.SelectedIndices[_i]].Name.ToString().CompareTo(_listThucDon[_j].Name) == 0)
                        {
                            _k = 1;
                        }

                        if (_k == 1)
                        {
                            break;
                        }
                    }

                    if (_k == 0)
                    {
                        Food _f = new Food()
                        {
                            ID = _listFood[lbMonAn.SelectedIndices[_i]].ID, Name = _listFood[lbMonAn.SelectedIndices[_i]].Name, Price = _listFood[lbMonAn.SelectedIndices[_i]].Price
                        };
                        _listThucDon.Add(_f);
                        _f = null;
                        lbThucDonHienTai.DataSource    = null;
                        lbThucDonHienTai.DataSource    = _listThucDon;
                        lbThucDonHienTai.DisplayMember = "Name";
                    }
                }
            }
        }
Exemple #2
0
        private void btnLogin_Click(object sender, EventArgs e)
        {
            if (String.IsNullOrEmpty(txtUsername.Text) == true)
            {
                errorProvider1.SetError(txtUsername, "Chưa điền Tên tài khoản");
                txtUsername.Focus();
                return;
            }

            errorProvider1.Clear();

            if (String.IsNullOrEmpty(txtPassword.Text) == true)
            {
                errorProvider1.SetError(txtPassword, "Chưa điền Mật khẩu");
                txtPassword.Focus();
                return;
            }

            if (Check.CheckChar(txtUsername.Text) == false)
            {
                errorProvider1.SetError(txtUsername, "Không được chứa ký tự");
                txtUsername.ResetText();
                txtUsername.Focus();
                return;
            }

            if (Check.CheckChar(txtPassword.Text) == false)
            {
                errorProvider1.SetError(txtPassword, "Không được chứa ký tự");
                txtPassword.ResetText();
                txtPassword.Focus();
                return;
            }

            this.Cursor = Cursors.WaitCursor;

            if (Transfer.Trans.CheckLogin(txtUsername.Text, GraphicsUserInterface.GraphicsUsers.MaHoa(txtPassword.Text)) == true)
            {
                this.Cursor = GraphicsUserInterface.GraphicsUsers.MouseHand(Properties.Resources.HandMouse1);

                XtraMessageBox.Show("Đăng nhập thành công", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information);

                _fSystem = new fSystem();

                _fSystem.FormLoginSystem = this;

                _fSystem._sUsername = txtUsername.Text;

                this.Hide();

                _fSystem.ShowDialog();

                _fSystem = null;

                txtPassword.ResetText();

                txtPassword.Focus();
            }
            else
            {
                this.Cursor = GraphicsUserInterface.GraphicsUsers.MouseHand(Properties.Resources.HandMouse1);

                XtraMessageBox.Show("Sai tên tài khoản hoặc mật khẩu", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }