using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Diagnostics;
namespace MyProject
{
public partial class MyForm : Form
{
Process MyProcess;
public MyForm()
{
InitializeComponent();
}
private void MyForm_KeyPress(object sender, KeyPressEventArgs e)
{
switch (e.KeyChar)
{
case 'a':
this.MyPictureBox.Image = null;
this.MyProcess = new Process();
this.MyProcess.StartInfo =
new ProcessStartInfo(""C:\Program Files (x86)\LilyPond\usr\bin\lilypond.exe"", "--png tmp.ly");
this.MyProcess.Start();
this.MyProcess.WaitForExit();
this.MyPictureBox.Image = new Bitmap("tmp.png");
break;
default:
break;
}
}
}
}
"C:Program Files (x86)LilyPondusrbinlilypond.exe" --png tmp.ly
命令创建tmp.png
。当我第一次按a
键时,MyProcess返回0,但next-总是返回1。我认为问题出在覆盖MyPictureBox正在使用的文件tmp.png
上,但我不知道如何修复它。你能帮我吗?
据我所知,lilymond没有提供使用命令行参数进行覆盖的选项。如果我是对的,那么你可以在MyProcess启动之前包括要删除的代码,然后是png文件(如果是exlists(。
if (System.IO.File.Exists(path))
{
System.IO.File.Delete(path);
}