using (OpenFileDialog op = new OpenFileDialog())
{
if (op.ShowDialog() == System.Windows.Forms.DialogResult.OK)
{
string fileSelected = op.FileName;
//TODO : add "fileSelected" to read only textBox
//TODO : Call Process for start file which be selected with default open files program.
System.Diagnostics.Process.Start(fileSelected);
}
}