web-dev-qa-db-ja.com

コマンドライン引数をWinFormsアプリケーションに渡すにはどうすればよいですか?

AppAとAppBの2つの異なるWinFormsアプリケーションがあります。両方とも.NET 2.0を実行しています。

AppAでAppBを開きたいのですが、コマンドライン引数を渡す必要があります。コマンドラインで渡す引数をどのように使用しますか?

これがAppBの現在のメインメソッドですが、これを変更できるとは思わないのですか?

  static void main()
  {
  }
90
MRFerocius
static void Main(string[] args)
{
  // For the sake of this example, we're just printing the arguments to the console.
  for (int i = 0; i < args.Length; i++) {
    Console.WriteLine("args[{0}] == {1}", i, args[i]);
  }
}

引数はargs文字列配列に保存されます:

$ AppB.exe firstArg secondArg thirdArg
args[0] == firstArg
args[1] == secondArg
args[2] == thirdArg
108
Thomas

Winformsアプリの引数を操作する最良の方法は、

string[] args = Environment.GetCommandLineArgs();

おそらく、これをenumの使用と組み合わせて、コードベース全体で配列の使用を固めることができます。

「そして、アプリケーションのどこでもこれを使用できます。コンソールアプリケーションのようにmain()メソッドで使用することに制限されているわけではありません。」

で見つかりました: HERE

171
Hannibul33

Environment.CommandLineプロパティにアクセスして、.Netアプリケーションのコマンドラインを取得できます。コマンドラインは単一の文字列になりますが、探しているデータを解析するのはそれほど難しくありません。

空のMainメソッドを使用しても、このプロパティや別のプログラムがコマンドラインパラメーターを追加する機能には影響しません。

12
JaredPar

2つの引数を渡す必要があるプログラムを開発する必要があると考えてください。まず、Program.csクラスを開いて、以下のようにMainメソッドに引数を追加し、これらの引数をWindowsフォームのコンストラクターに渡す必要があります。

static class Program
{    
   [STAThread]
   static void Main(string[] args)
   {            
       Application.EnableVisualStyles();
       Application.SetCompatibleTextRenderingDefault(false);
       Application.Run(new Form1(args[0], Convert.ToInt32(args[1])));           
   }
}

Windowsフォームクラスで、以下のようにProgramクラスからの入力値を受け入れるパラメーター化されたコンストラクターを追加します。

public Form1(string s, int i)
{
    if (s != null && i > 0)
       MessageBox.Show(s + " " + i);
}

これをテストするには、コマンドプロンプトを開き、このexeが配置されている場所に移動します。ファイル名を指定してから、parmeter1 parameter2を指定します。たとえば、以下を参照してください

C:\MyApplication>Yourexename p10 5

上記のC#コードから、値p10 5のメッセージボックスが表示されます。

9
Sarath Avanavu

このシグネチャを使用します:(c#で)static void Main(string [] args)

この記事は、プログラミングにおけるメイン関数の役割を説明するのにも役立ちます。 http://en.wikipedia.org/wiki/Main_function_(programming)

ここにあなたのための小さな例があります:

class Program
{
    static void Main(string[] args)
    {
        bool doSomething = false;

        if (args.Length > 0 && args[0].Equals("doSomething"))
            doSomething = true;

        if (doSomething) Console.WriteLine("Commandline parameter called");
    }
}
7
chrisghardwick

これは誰にとっても一般的なソリューションではないかもしれませんが、C#を使用しているときでも、Visual BasicのApplication Frameworkが好きです。

Microsoft.VisualBasicへの参照を追加します

WindowsFormsApplicationというクラスを作成します

public class WindowsFormsApplication : WindowsFormsApplicationBase
{

    /// <summary>
    /// Runs the specified mainForm in this application context.
    /// </summary>
    /// <param name="mainForm">Form that is run.</param>
    public virtual void Run(Form mainForm)
    {
        // set up the main form.
        this.MainForm = mainForm;

        // Example code
        ((Form1)mainForm).FileName = this.CommandLineArgs[0];

        // then, run the the main form.
        this.Run(this.CommandLineArgs);
    }

    /// <summary>
    /// Runs this.MainForm in this application context. Converts the command
    /// line arguments correctly for the base this.Run method.
    /// </summary>
    /// <param name="commandLineArgs">Command line collection.</param>
    private void Run(ReadOnlyCollection<string> commandLineArgs)
    {
        // convert the Collection<string> to string[], so that it can be used
        // in the Run method.
        ArrayList list = new ArrayList(commandLineArgs);
        string[] commandLine = (string[])list.ToArray(typeof(string));
        this.Run(commandLine);
    }

}

Main()ルーチンを次のように変更します

static class Program
{

    [STAThread]
    static void Main()
    {
        Application.EnableVisualStyles();
        Application.SetCompatibleTextRenderingDefault(false);

        var application = new WindowsFormsApplication();
        application.Run(new Form1());
    }
}

このメソッドは、いくつかの追加の便利な機能を提供します(SplashScreenサポートやいくつかの便利なイベントなど)

public event NetworkAvailableEventHandler NetworkAvailabilityChanged;d.
public event ShutdownEventHandler Shutdown;
public event StartupEventHandler Startup;
public event StartupNextInstanceEventHandler StartupNextInstance;
public event UnhandledExceptionEventHandler UnhandledException;
4