Beispiel #1
0
        //Products.Preview

        //search item product get value from mainwindow textSearch
        private void Searchproducts()
        {
            try
            {
                if (db.CheckTextSeach() == true)
                {
                    grid_products.ItemsSource = db.SearchProducts().DefaultView;
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.GetType().Name + "");
            }
        }