I have a button which currently runs explorer:-
private void _mJobsExplorer(object sender, RoutedEventArgs e)
{
Process.Start(@"C:\");
}
I need to be able to launch the Desktop instead. Launching explorer that points to Desktop is not enough.
I have created a Desktop.scf, that launches the Desktop, but I don't know how to launch this within c# either.
I would prefer to launch Desktop straight from the code instead of calling a program that launches Desktop.
Any ideas?