Explore10
Explore10 copied to clipboard
If no program is associated with a file when you double click it, the application crashes.
ExploreView.xaml.cs
private void openFile(object sender, RoutedEventArgs e) { FileItem item = (FileItem)sender; Process.Start(item._filepath); < Here }
Exception thrown: 'System.ComponentModel.Win32Exception' in System.dll
Hm. I should look into this. That is a problem.
Updated the post, didn't mean to post yet.
Yeah, I was expecting that starting a process without exception checking is a bad idea