Exemplo n.º 1
0
        private void cage_update_btn_Click(object sender, EventArgs e)
        {
            int  index = cage_list_box.SelectedIndex;
            Cage cage  = cg.GetCage(index);

            cage.Update();
        }
Exemplo n.º 2
0
 private void add_new_cage_btn_Click(object sender, EventArgs e)
 {
     //Add constrain
     cage.Update();
     StoreInfo.sharedStoreInfo().main.RefreshNameCageList();
     this.Close();
 }