Untitled

 avatar
unknown
plain_text
a year ago
805 B
23
Indexable
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using ViewModel;
using Model;

namespace ADataServer1
{
    /// <summary>
    /// Interaction logic for ProductPage.xaml
    /// </summary>
    public partial class ProductPage : Page
    {
        ProductDB db = new ProductDB();

        public ProductPage()
        {
            InitializeComponent();
            lstView.ItemsSource = db.SelectAllActive();
        }

       
    }
}
Editor is loading...
Leave a Comment