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