KanbanForms.xaml.cs 597 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using Xamarin.Forms;
  7. using Xamarin.Forms.Xaml;
  8. namespace comal.timesheets
  9. {
  10. [XamlCompilation(XamlCompilationOptions.Compile)]
  11. public partial class KanbanForms
  12. {
  13. public KanbanForms()
  14. {
  15. InitializeComponent();
  16. _forms.DataModel = App.Data.KanbanForms;
  17. _forms.AppliesTo = "Kanban";
  18. _forms.Property = model => App.Data.KanbanForms.Forms;
  19. _forms.RefreshData(false,true);
  20. }
  21. }
  22. }