After searching this site I am at a loss for the following issue:
I have downloaded the latest package(s) via Nuget.
Using the TaskBrowserDialog I keep receiving Exception type: System.IO.FileNotFoundException
Message: The system cannot find the file specified.
Is this dialog working in Windows 10?
Anyone have any examples on how to use this UI control?
NOTE: tdbDialogAuto is my TaskBrowserDialog instance.
I have downloaded the latest package(s) via Nuget.
Using the TaskBrowserDialog I keep receiving Exception type: System.IO.FileNotFoundException
Message: The system cannot find the file specified.
Is this dialog working in Windows 10?
Anyone have any examples on how to use this UI control?
NOTE: tdbDialogAuto is my TaskBrowserDialog instance.
using (var ts = new TaskService())
{
tbdialogAuto.TaskService = ts;
tbdialogAuto.SelectedPath = ts.RootFolder.Name;
tbdialogAuto.AllowFolderSelection = true;
tbdialogAuto.ShowTasks = true;
tbdialogAuto.ShowDialog();
}
Any help is appreciated.