当我启动一个进程时,我无法控制我的文本框。
我的问题是:如何在启动进程时修改文本框?
即使我尝试在进程启动之前修改文本框,它仍然不起作用。
我在这个论坛上找到了一些答案,但解释对我来说有点难以解决我的问题。
我创建了一个小程序,它将运行一个批处理文件来进行备份。备份运行时,我无法修改我的文本框、禁用按钮等。
我已经看到这是正常的,但我不知道如何实施解决方案。我的最后一次尝试是Dispatcher.invoke
如下所示。
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
tb_Status.Text = "Ready";
}
public void status()
{
Dispatcher.Invoke(DispatcherPriority.Send, new Action( () => { tb_Status.Text = "The backup is running!"; } ) );
}
public void process()
{
try
{
Process p = new Process();
p.StartInfo.WindowStyle = ProcessWindowStyle.Minimized;
p.StartInfo.CreateNoWindow = true;
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.FileName = "Robocopy.bat";
p.Start();
string output = p.StandardOutput.ReadToEnd();
p.WaitForExit();
tb_Output.Text = File.ReadAllText("Backup\\log.txt");
}
catch (Exception ex)
{
tb_Status.Text = ex.Message.ToString();
}
}
private void Bt_Start_Click(object sender, EventArgs e)
{
status();
Directory.CreateDirectory("Backup");
process();
tb_Status.Text = "The backup finished";
File.Delete("Backup\\log.txt");
}
}