Ejemplo n.º 1
0
        public InserirPage()
        {
            InitializeComponent();
            string dbPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), "Controle.db");

            elementoDatabase = new ElementoDatabase(dbPath);
        }
Ejemplo n.º 2
0
        protected async override void OnAppearing()
        {
            base.OnAppearing();
            string dbPath           = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), "Controle.db");
            var    elementoDatabase = new ElementoDatabase(dbPath);

            ControleLista.ItemsSource = await elementoDatabase.ConsultarTodosAsync();
        }