DigitalKeys.xaml.cs 733 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Threading.Tasks;
  4. using Comal.Classes;
  5. using InABox.Clients;
  6. using InABox.Core;
  7. using InABox.Mobile;
  8. using Xamarin.Forms;
  9. namespace comal.timesheets
  10. {
  11. public partial class DigitalKeys : ContentPage
  12. {
  13. public DigitalKeys()
  14. {
  15. InitializeComponent();
  16. LoadData();
  17. }
  18. private void LoadData()
  19. {
  20. }
  21. protected override void OnAppearing()
  22. {
  23. base.OnAppearing();
  24. }
  25. void Items_Refreshing(System.Object sender, System.EventArgs e)
  26. {
  27. }
  28. void MaterialCard_Clicked(System.Object sender, System.EventArgs e)
  29. {
  30. }
  31. }
  32. }