Démarrez le processus enfant et n'attendez pas la fin du processus enfant. Afficher la copie en clair dans le presse-papierPRint ?
··········10········ ·20····· ···30·······40········50·······60········70·· ······80· ······90 ·······100 ·······110 ······120 ········130 ······140· ······150
private void simpleRun_Click(objet expéditeur, System.EventArgs e)
{ System.Diagnostics.Process.Start (@"C:listfiles.bat ");
}
private void simpleRun_Click(object sender, System.EventArgs e)
{ System.Diagnostics.Process.Start (@"C:listfiles.bat");
}
2. Démarrez le sous-processus, attendez la fin du sous-processus et obtenez la copie de la vue de sortie dans clipboardprint ?
private void runSyncAndGetResults_Click(object sender, System.EventArgs e)
{
System.Diagnostics.ProcessStartInfo psi = new System.Diagnostics .ProcessStartInfo (@"C:listfiles.bat");
psi.RedirectStandardOutput = true;
psi.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden; 🎜> psi.UseShellExecute = false;
System .Diagnostics.Process listFiles;
listFiles = System.Diagnostics.Process.Start(psi); > if (listFiles.HasExited)
{ string output = myOutput.ReadToEnd();
this.processResults.Text = output;
}
private void runSyncAndGetResults_Click( expéditeur de l'objet, système .EventArgs e)
{
System.Diagnostics.ProcessStartInfo psi = new System.Diagnostics.ProcessStartInfo (@"C:listfiles.bat");
psi.RedirectStandardOutput = true; = System.Diagnostics.ProcessWindowStyle.Hidden;
psi.UseShellExecute = false;
System.Diagnostics.Process listFiles;
listFiles = System.Diagnostics.Process.Start (psi); .StreamReader myOutput = listFiles.StandardOutput;
listFiles.WaitForExit(2000);
if (listFiles.HasExited)
{
string output = myOutput.ReadTo End(); this.processResults.Text = output;
}
>
3. Utiliser le navigateur par défaut pour ouvrir URLview plaincopy vers clipboardprint ?
······ ··· 10········20·······30·······40········50·······60· ·· ······70·······80········90········100·······110······· 120········130·······140·······150
lancement de vide privéURL_Click (expéditeur d'objet, System.EventArgs e) @http://www.duncanmackenzie .net ; Pour le contenu des trois méthodes, veuillez faire attention au site Web PHP chinois (www.php.cn) pour plus de contenu connexe !