Exemplo n.º 1
0
        public void TestImportAction(ActionImport.DataType type, string filePath = null)
        {
            var action = new ActionImport(type)
            {
                FilePath = filePath
            };

            DoAction(action.DoStartupAction);
        }
Exemplo n.º 2
0
 private void Import(ActionImport.DataType type)
 {
     DoAction(new ActionImport(type).DoStartupAction);
 }
Exemplo n.º 3
0
 public PasteDlgTab(ActionImport.DataType dataType, Type tabType)
 {
     DType   = dataType;
     TabType = tabType;
 }