2

私は主にWindowsフォームアプリケーションである移行ツールに取り組んでいます。私がやりたいのは、パラメーターを渡すことができ、GUIが完全になくても移行が行われる、一種のコマンドラインユーティリティとしてアプリケーションを実行する機能を提供することです。これは非常に簡単なようで、私のアプリケーションのエントリポイントは次のようになります。

    [STAThread]
    static void Main(string[] args)
    {
        if (args.Length == 0)
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new MainWindow());
        }
        else
        {
            //Command Line Mode
            Console.WriteLine("In Command Line Mode");
            Console.ReadLine();
        }
    }

私が遭遇している問題は、実行がelseブロックに渡されたときに、コマンドプロンプトでテキストがユーザーに書き戻されないことです。これは、さまざまな実行が完了したときにコマンドプロンプトでユーザーを更新するために問題があります。スタンドアロンのコンソールアプリケーションを簡単に作成できましたが、特定のシナリオでさまざまな種類のエントリを実行できる単一のツールを提供したいと考えていました。私が目指していることは可能ですか?もしそうなら、それはどのように達成されますか?

ありがとう!

4

3 に答える 3

3

これについて説明しているトピックは次のとおりです。http://social.msdn.microsoft.com/forums/en-US/Vsexpressvb/thread/875952fc-cd2c-4e74-9cf2-d38910bde613/

キーはAllocConsolekernel32.dllから関数を呼び出すことです

于 2012-11-06T20:05:17.920 に答える
2

このための通常のパターンは、ビジュアルUIまたはコマンドラインアプリケーションから呼び出すクラスライブラリにロジックを書き込むことです。

たとえば、UIで「幅」、「高さ」、「深さ」を受け入れてから体積を計算した場合、計算はクラスライブラリに入れられます。

したがって、3つの引数を受け入れるコンソールアプリ、または3つの入力を持つフォームアプリのいずれかがあり、どちらの場合も、同じ呼び出しを行います...

var volumeCalculations = new VolumeCalculations();
var volume = volumeCalculations.GetVolume(width, height, depth);

コンソールアプリは非常に薄く、フォームアプリは非常に薄いです。これは、入力を取得してクラスライブラリに渡すだけだからです。

于 2012-11-06T20:06:12.147 に答える
0

これが実行可能な例です。コンパイル:

csc RunnableForm.cs RunnableForm.Designer.cs

RunnableForm.cs:

using System;
using System.Linq;
using System.Windows.Forms;

namespace Test
{
    public partial class RunnableForm : Form
    {
        public RunnableForm()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            MessageBox.Show("bang!");
        }

        [STAThread]
        static void Main()
        {

            string[] args = Environment.GetCommandLineArgs();
            // We'll always have one argument (the program's exe is args[0])
            if (args.Length == 1)
            {
                // Run windows forms app
                Application.Run(new RunnableForm());
            }
            else
            {
                Console.WriteLine("We'll run as a console app now");
                Console.WriteLine("Arguments: {0}", String.Join(",", args.Skip(1)));
                Console.Write("Enter a string: ");
                string str = Console.ReadLine();
                Console.WriteLine("You entered: {0}", str);
                Console.WriteLine("Bye.");
            }
        }
    }
}

RunnableForm.Designer.cs:

namespace Test
{
    partial class RunnableForm
    {
        /// <summary>
        /// Required designer variable.
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// Clean up any resources being used.
        /// </summary>
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Windows Form Designer generated code

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.button1 = new System.Windows.Forms.Button();
            this.SuspendLayout();
            // 
            // button1
            // 
            this.button1.Location = new System.Drawing.Point(42, 42);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(153, 66);
            this.button1.TabIndex = 0;
            this.button1.Text = "button1";
            this.button1.UseVisualStyleBackColor = true;
            this.button1.Click += new System.EventHandler(this.button1_Click);
            // 
            // RunnableForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(284, 261);
            this.Controls.Add(this.button1);
            this.Name = "RunnableForm";
            this.Text = "RunnableForm";
            this.ResumeLayout(false);

        }

        #endregion

        private System.Windows.Forms.Button button1;
    }
}
于 2014-01-14T03:29:55.403 に答える