private void BtnComplete_Click(object sender, RoutedEventArgs e)
        {
            var confirm = new Dialog()
            {
                Message = "Giao hàng đã thành công?"
            };

            confirm.Owner = Window.GetWindow(this);
            confirm.ShowDialog();
            if (true == confirm.DialogResult)
            {
                // Lấy đối tượng Bill đang chọn trong List View
                if (listBill.SelectedItem == null)
                {
                    return;
                }
                Bill_Show bill = listBill.SelectedItem as Bill_Show;

                try
                {
                    manage.UpdateStatusBill(bill);
                    // Cập nhật lên List View
                    int curIndex = listBill.SelectedIndex;
                    Bills = manage.Load_ListBill();
                    listBill.ItemsSource   = Bills;
                    listBill.SelectedIndex = curIndex;
                    // Tắt 2 button
                    btnComplete.IsEnabled = btnIgnore.IsEnabled = false;
                }
                catch (Exception)
                {
                }
            }
        }