并排打开 winmerge 和两个文档 c#

open winmerge with two documents side by side c#

我正在用 c# 开发一个 Windows 表单应用程序,它将对文档进行更改,我想包含一个按钮,该按钮将在 winmerge 中打开之前和之后。

如果可以,我该怎么做?

更多详情:

我想单击文本框中包含起始文件的按钮 Show Result。 它应该打开 winmerge 并打开 this dialog,左边是原始文件,右边是更新后的文件。

到目前为止我有:

    Process notePad = new Process();
    notePad.StartInfo.FileName = "WinMerge.exe";
    notePad.StartInfo.Arguments = txtIn.Text;
    notePad.Start();

更新后的文件与输入文件位于同一目录下一层名为 "UPDATED"

的文件夹中
String leftFilePath = "...";
String rightFilePath = "...";

string exe = "winmergeu.exe";
String args = $@"""{leftFilePath}"" ""{rightFilePath}""";

Process.Start(exe, args);