Launching a file in WPF is as easy as off loading the process to the operating system. The System.Diagnostics.Process namespace contains a Start method that notifies the OS to handle the file with the designated application for that mime type.
string fileLocation = "C:\temp.txt";
System.Diagnostics.Process.Start(fileLocation);
that's all there is to it.