Ejemplo n.º 1
0
        private void btnPlantDescriptionSearch_Click(object sender, EventArgs e)
        {
            lbPlants.Items.Clear();

            foreach (Plant plant in InformationLibrary.PlantSearchByDescription(tbPlantSearchKeyword.Text))
            {
                lbPlants.Items.Add(plant.Name);
            }
        }