Unplanned
Last Updated: 18 Dec 2023 15:02 by Martin Ivanov

The following exception is thrown when a new file dialog is created on a separate thread and its ShowDialog method is invoked.
InvalidOperationException: "The calling thread cannot access this object because a different thread owns it."

This happens also if you define an ExplorerControl in any Window opened on another UI thread.


To work this around make sure that you use RadFileDialog and ExplorerControls only on the main UI thread. For example:

App.Current.Dispatcher.BeginInvoke(new Action(() =>
{
     RadOpenFileDialog openFileDialog = new RadOpenFileDialog();
     openFileDialog.ShowDialog();
}));

Unplanned
Last Updated: 11 Mar 2019 09:37 by ADMIN
The contents of the Path Navigation Pane and Main Pane are not synced with the selection inside the Tree Navigation Pane when a local drive is shared through a remote desktop connection.
Unplanned
Last Updated: 01 Feb 2019 12:55 by ADMIN
Drag & Drop between ExplorerControl and Windows Explorer does not work
Unplanned
Last Updated: 10 Nov 2017 12:13 by ADMIN