Exemplo n.º 1
0
 private void _okButton_Click(Object sender, EventArgs e)
 {
     var table = _tbExcelRange.Text.AsTable();
     if (table != null)
     {
         ExcelRange = table;
         DialogResult = DialogResult.OK;
         Close();
     }
 }
Exemplo n.º 2
0
 public TableImportFinishCommand(DataVaultUIContext context, Table excelRange)
     : base(context) 
 {
     ExcelRange = excelRange;
 }