Example #1
0
 private void addHoa_Clicked(object sender, EventArgs e)
 {
     if (cboloaihoa.SelectedIndex >= 0)
     {
         LoaiHoa l = (LoaiHoa)cboloaihoa.SelectedItem;
         Hoa     h = new Hoa
         {
             MaLoai = l.MaLoai,
             TenHoa = txttenhoa.Text,
             Hinh   = txthinh.Text,
             Gia    = double.Parse(txtgia.Text),
             MoTa   = txtMota.Text
         };
         if (db.InsertHoa(h) == true)
         {
             DisplayAlert("Thông báo", "Thêm hoa thành công", "OK");
         }
         else
         {
             DisplayAlert("Thông báo", "Thêm hoa Thất bại", "OK");
         }
     }
     else
     {
         DisplayAlert("Thông báo", "Bạn phải chọn loại hoa", "OK");
     }
 }
Example #2
0
 //Xử lý thêm loại hoa
 public bool InsertLoaiHoa(LoaiHoa loai)
 {
     try
     {
         using (var connection = new SQLiteConnection(System.IO.Path.Combine(folder, "qlhoa.db")))
         {
             connection.Insert(loai);
             return(true);
         }
     }
     catch (SQLiteException ex)
     {
         return(false);
     }
 }
Example #3
0
        private void cmdaddLoaiHoa_Clicked(object sender, EventArgs e)
        {
            Database db = new Database();
            LoaiHoa  l  = new LoaiHoa {
                TenLoai = txtloaihoa.Text
            };
            bool kq = db.InsertLoaiHoa(l);

            if (kq == true)
            {
                DisplayAlert("Message", "Thêm Thành Công", "OK");
            }
            else
            {
                DisplayAlert("Message", "Thêm thất bại", "OK");
            }
        }
Example #4
0
        private void ItemTapped(object sender, ItemTappedEventArgs e)
        {
            LoaiHoa l = (LoaiHoa)MyListView.SelectedItem;

            Navigation.PushAsync(new HoaTheoLoai(l.MaLoai));
        }