Exemple #1
0
        private void btnVerwijder_Click(object sender, RoutedEventArgs e)
        {
            if (txtType.Text != "")
            {
                int ID = Convert.ToInt32(lbID.Content);

                MessageBoxResult r = MessageBox.Show("Weet je zeker dat je het huistype met het id " + lbID.Content + " wilt verwijderen?", "Verwijderen huistype", MessageBoxButton.YesNo);
                if (r == MessageBoxResult.Yes)
                {
                    housetype htt = (from housetype in db.housetypes
                                     where housetype.id == ID
                                     select housetype).Single();

                    htt.type = txtType.Text;

                    db.housetypes.DeleteOnSubmit(htt);
                    db.SubmitChanges();
                }

                Huizentypes ht = new Huizentypes();
                ht.Show();
                ht.lbTypes.ItemsSource = db.housetypes.ToList();
                this.Close();
            }
            else
            {
                MessageBox.Show("Vul eers een geldig type in!", "Fout!");
            }
        }
Exemple #2
0
        private void btnToevoegen_Click(object sender, RoutedEventArgs e)
        {
            if (txtType.Text != "")
            {
                housetype htt = new housetype();
                htt.type = txtType.Text;

                db.housetypes.InsertOnSubmit(htt);
                db.SubmitChanges();

                MessageBox.Show("Het type huis " + htt.type + " is toegevoegd aan de database", "Gelukt!");

                txtType.Text = "";
            }
            else
            {
                MessageBox.Show("Vul eers iets in!", "Fout!");
            }
            Huizentypes ht = new Huizentypes();

            ht.Show();
            ht.lbTypes.SelectedItem = db.housetypes.ToList();
            this.Close();
        }
Exemple #3
0
 partial void Updatehousetype(housetype instance);
Exemple #4
0
 partial void Deletehousetype(housetype instance);
Exemple #5
0
 partial void Inserthousetype(housetype instance);