public void ShowRecurringSearch()
        {
            // Obtenemos las busquedas recurrentes
            var result = AppRuntime.MarketliteDB.getRecurringSearches();

            BusquedaCollectionView.Source = new BusquedaSource(result);
            Busqueda.BusquedaDelegateFlowLayout DelegateFlowLayout = new Busqueda.BusquedaDelegateFlowLayout(result, this);
            BusquedaCollectionView.Delegate = DelegateFlowLayout;
            BusquedaCollectionView.ReloadData();
        }
Beispiel #2
0
        void ReleaseDesignerOutlets()
        {
            if (btnClearSearch != null)
            {
                btnClearSearch.Dispose();
                btnClearSearch = null;
            }

            if (BusquedaCollectionView != null)
            {
                BusquedaCollectionView.Dispose();
                BusquedaCollectionView = null;
            }

            if (SearchTextField != null)
            {
                SearchTextField.Dispose();
                SearchTextField = null;
            }
        }