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)\LilyPond\usr\bin\lilypond.exe" --png tmp.ly
命令创建tmp.png
。当我第一次按下a
键时,MyProcess返回0,但是接下来 - 总是返回1。我认为问题在于覆盖由MyPictureBox使用的文件tmp.png
,但我不知道如何修复它。你能帮帮我吗?
答案 0 :(得分:1)
据我所知,lilypond没有提供使用命令行参数覆盖的选项。如果我是对的那么你可以在MyProcess启动之前包含代码以删除png文件(如果是exsists)。
if (System.IO.File.Exists(path))
{
System.IO.File.Delete(path);
}