private void txtMaMon_TextChanged(object sender, EventArgs e) { if (txtMaMon.Text != "") { txtTenMon.Text = BLL.showTenTheoMaMon(txtMaMon.Text); txtDonGia.Text = BLL.showDonGiaTheoMaMon(txtMaMon.Text); string anhMonAn = BLL.showAnhTheoMaMon(txtMaMon.Text); Image image = Image.FromFile(@"F:\BTL lập trình windows nhóm 1\QuanLiNhaHang_nhom1\QuanLiNhaHang_nhom1\Images\Dishes\" + anhMonAn); picAnhMonAn.Image = image; picAnhMonAn.Width = image.Width; picAnhMonAn.Height = image.Height; } }