1234567891011121314151617181920212223242526272829303132333435363738 |
- using System;
- using System.Collections.Generic;
- using System.Threading.Tasks;
- using Comal.Classes;
- using InABox.Core;
- using InABox.Mobile;
- using Xamarin.Forms;
- namespace comal.timesheets
- {
- public partial class DigitalKeys
- {
- public DigitalKeys()
- {
- InitializeComponent();
- LoadData();
- }
- private void LoadData()
- {
- }
- protected override void OnAppearing()
- {
- base.OnAppearing();
- }
- void Items_Refreshing(System.Object sender, System.EventArgs e)
- {
- }
- void MaterialCard_Clicked(System.Object sender, System.EventArgs e)
- {
- }
- }
- }
|