WindowTrackerSetup.xaml.cs 450 B

12345678910111213141516171819
  1. using InABox.Wpf;
  2. using System;
  3. using System.Windows;
  4. namespace PRSDesktop
  5. {
  6. /// <summary>
  7. /// Interaction logic for WindowTrackerSetup.xaml
  8. /// </summary>
  9. public partial class WindowTrackerSetup : ThemableWindow
  10. {
  11. public WindowTrackerSetup(Guid employeeid)
  12. {
  13. InitializeComponent();
  14. trackergrid.EmployeeID = employeeid;
  15. trackergrid.Refresh(true, true);
  16. }
  17. }
  18. }