Bug description
The project is based on WPF, .NET Framework 4.8, NanoXLSX 3.0.0. An attempt to load a workbook from a file using WorkbookReader.Load causes the program to freeze.
There is no freeze in the console application.
Steps To Reproduce
Steps to reproduce the behavior:
- Create a WPF Project.
- Install nuget NanoXLSX 3.0.0.
- Add Button into MainWindow.XAML and create the handler of Click event:
private void Button_Click(object sender, RoutedEventArgs e)
{
Workbook workbook = WorkbookReader.Load("d:\\tags.xlsx"); *
MessageBox.Show(workbook.Filename);
}
- Compile project, press button and program freeze.
* Instead of "d:\\tags.xlsx" substitute the name of any existing Excel file.
Bug description
The project is based on WPF, .NET Framework 4.8, NanoXLSX 3.0.0. An attempt to load a workbook from a file using WorkbookReader.Load causes the program to freeze.
There is no freeze in the console application.
Steps To Reproduce
Steps to reproduce the behavior:
private void Button_Click(object sender, RoutedEventArgs e)
{
Workbook workbook = WorkbookReader.Load("d:\\tags.xlsx"); *
MessageBox.Show(workbook.Filename);
}
* Instead of "d:\\tags.xlsx" substitute the name of any existing Excel file.