ProcessHistoryView.xaml.cs 542 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Collections.ObjectModel;
  4. using System.IO;
  5. using System.Windows;
  6. using System.Windows.Controls;
  7. using Aitex.Sorter.Common;
  8. using ExcelLibrary.SpreadSheet;
  9. namespace VirgoUI.Client.Models.DataLog.ProcessHistory
  10. {
  11. /// <summary>
  12. /// Interaction logic for ProcessHistoryView.xaml
  13. /// </summary>
  14. public partial class ProcessHistoryView : UserControl
  15. {
  16. public ProcessHistoryView()
  17. {
  18. InitializeComponent();
  19. }
  20. }
  21. }