我的程序需要一点帮助。我试图在选取框模式下显示进度条,当我的主线程(表单)启动一个新进程并等待进程退出时。这意味着我启动 pdflatex 来编译 TEX 文件,并显示带有进度条的新表单,直到过程 WaitForExit() 方法完成。而且我需要知道我是否以正确的方式做这件事,或者还有另一种更好的方法。我有一个名为 Progress 的类,它扩展了 Form 并用于新线程。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Diagnostics;
using System.Windows.Forms;
using System.Drawing;
namespace Measuring
{
public class Progress : Form
{
public Progress(Form form)
{
InitializeComponent(form);
}
private void InitializeComponent(Form parent)
{
this.FormBorderStyle = FormBorderStyle.None;
this.Font = parent.Font;
this.Size = new Size(300, 40);
this.StartPosition = FormStartPosition.Manual;
this.Location = new Point(parent.Left + ((parent.Width - this.Width) / 2), (parent.Top + ((parent.Height - this.Height) / 2)));
ProgressBar progressbar = new ProgressBar();
Label label = new Label();
label.AutoSize = true;
label.Text = "Converting file to pdf";
label.Dock = DockStyle.Top;
progressbar.Dock = DockStyle.Bottom;
progressbar.Maximum = 100;
progressbar.Minimum = 0;
progressbar.ForeColor = Color.Green;
progressbar.Style = ProgressBarStyle.Marquee;
progressbar.MarqueeAnimationSpeed = 10;
this.Controls.Add(label);
this.Controls.Add(progressbar);
}
public void Start()
{
this.ShowDialog();
}
public void Stop()
{
this.Close();
}
}
}
现在我有streamwrite方法,最后我称之为:
Process p = new Process();
p.StartInfo.FileName = "pdflatex";
p.StartInfo.Arguments = save.FileName;
p.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
Progress prg = new Progress(this);
Thread t = new Thread(prg.Start);
try
{
if (p.Start())
{
t.Start();
p.WaitForExit();
prg.Stop();
if (p.ExitCode != 0)
{
MessageBox.Show("Conversion to pdf using LaTeX failed!" + Environment.NewLine + "No output file produced.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
}
catch
{
MessageBox.Show("Pdflatex is not installed!", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
似乎还可以,但我不知道它是否真的安全。我知道所有异常都没有得到处理,但主要是 Start() 和 Stop() 方法。
非常感谢。