Esempio n. 1
0
        private void CreateProductButtons()
        {
            this.PrepareUIForCreateButtons();
            List <ProductEntry> productEntries = InterplayStorage.GetProductEntries();

            this.CreateProductButtons(productEntries);
        }
Esempio n. 2
0
 private void txtSearch_TextChanged(object sender, EventArgs e)
 {
     try
     {
         this.PrepareUIForCreateButtons();
         this.CreateProductButtons(InterplayStorage.GetProductEntries(txtSearch.Text));
     }
     catch (Exception ex)
     {
         this.HandleException(ex);
     }
 }