J'ai actuellement une application avec une interface graphique.
Serait-il possible d'utiliser cette même application à partir de la ligne de commande (sans interface graphique et avec l'utilisation de paramètres).
Ou dois-je créer un fichier .exe (et une application) distinct pour l'outil de ligne de commande?
Main
accepte les paramètres de ligne de commande.Voici un court exemple:
[STAThread]
static void Main(string[] args)
{
if(args.Length == 0)
{
Application.Run(new MyMainForm());
}
else
{
// Do command line/silent logic here...
}
}
Si votre application n'est pas déjà structurée pour effectuer un traitement silencieux (si toute votre logique est bloquée dans votre code WinForm), vous pouvez pirater le traitement silencieux dans la réponse de CharithJ .
EDIT par OP Désolé de détourner votre réponse Merlyn. Je veux juste toutes les informations ici pour les autres.
Pour pouvoir écrire sur la console dans une application WinForms, procédez comme suit:
static class Program
{
// defines for commandline output
[DllImport("kernel32.dll")]
static extern bool AttachConsole(int dwProcessId);
private const int ATTACH_PARENT_PROCESS = -1;
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main(string[] args)
{
// redirect console output to parent process;
// must be before any calls to Console.WriteLine()
AttachConsole(ATTACH_PARENT_PROCESS);
if (args.Length > 0)
{
Console.WriteLine("Yay! I have just created a commandline tool.");
// sending the enter key is not really needed, but otherwise the user thinks the app is still running by looking at the commandline. The enter key takes care of displaying the Prompt again.
System.Windows.Forms.SendKeys.SendWait("{ENTER}");
Application.Exit();
}
else
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new QrCodeSampleApp());
}
}
}
Dans votre classe program.cs, conservez la méthode Main telle quelle, mais ajoutez string[] Args
au formulaire principal. Par exemple...
[STAThread]
static void Main(string[] Args)
{
....
Application.Run(new mainform(Args));
}
Dans le constructeur mainform.cs
public mainform(string[] Args)
{
InitializeComponent();
if (Args.Length > 0)
{
// Do what you want to do as command line application.
// You can hide the form and do processing silently.
// Remember to close the form after processing.
}
}
Pas assez de points pour commenter. Je voulais ajouter à la solution acceptée que le [DllImport ("kernel32.dll")] n'est pas nécessaire pour écrire sur la console lorsque vous utilisez mingw pour appeler le programme, il semble que ce soit un problème Windows/DOS.