1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Collections.ObjectModel;
- using System.IO;
- using System.Windows;
- using System.Windows.Controls;
- using Aitex.Sorter.Common;
- using ExcelLibrary.SpreadSheet;
- namespace VirgoUI.Client.Models.DataLog.ProcessHistory
- {
- /// <summary>
- /// Interaction logic for ProcessHistoryView.xaml
- /// </summary>
- public partial class ProcessHistoryView : UserControl
- {
- public ProcessHistoryView()
- {
- InitializeComponent();
-
- }
- }
- }
|