DigitalKeys.xaml.cs 698 B

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