1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using Xamarin.Forms;
- using Xamarin.Forms.Xaml;
- namespace comal.timesheets
- {
- [XamlCompilation(XamlCompilationOptions.Compile)]
- public partial class KanbanForms
- {
- public KanbanForms()
- {
- InitializeComponent();
- _forms.DataModel = App.Data.KanbanForms;
- _forms.AppliesTo = "Kanban";
- _forms.Property = model => App.Data.KanbanForms.Forms;
- _forms.RefreshData(false,true);
- }
-
- }
- }
|