1

私には2つのフォームがあります。両方同時に始めたい。メインプログラムでは、Md Kamruzzaman Pallob の提案に従います。次のコードは更新版ですが、まだ動作していません。

エラーはエラー C3350 です: 'System::Threading::ThreadStart' : デリゲート コンストラクターには 1 つの引数が必要です

   #include "stdafx.h"
  #include "Form1.h"
  #include "Form3.h"
   using namespace MySearch;
   using namespace System;
   using namespace System::Threading;



 public ref class ThreadX{
 public: ThreadX(){}
 public: static void func1()
{
    Application::Run(gcnew Form1());
}

public: static void func2()
{
    Application::Run(gcnew Form3());
}


};


[STAThreadAttribute]
int main(array<System::String ^> ^args)
{
// Enabling Windows XP visual effects before any controls are created
Application::EnableVisualStyles();
Application::SetCompatibleTextRenderingDefault(false); 

// Create the main window and run it


    ThreadX^ o1 = gcnew ThreadX();
    ThreadX^ o2 = gcnew ThreadX();

    Thread^ th = gcnew Thread(gcnew ThreadStart(o1, &ThreadX::func1));
    Thread^ th1 = gcnew Thread(gcnew ThreadStart(o2, &ThreadX::func2));
    th->Start();
    th1->Start();



return 0;

}

4

3 に答える 3

1

次のように form1 の load イベントを作成してみませんか? :

private: System::Void Form1_Load(System::Object^  sender, System::EventArgs^  e) {
         Form2^ form2 = gcnew Form2;
         form2->Show();
     }

次に、Form1 が開くたびに、Form2 も開きます。それは私のために働くようです。

于 2012-05-03T00:34:31.700 に答える
0

試す :

Thread^ th = gcnew Thread(gcnew ThreadStart( &ThreadX::func1 ) );
Thread^ th1 = gcnew Thread(gcnew ThreadStart( &ThreadX::func2 ) );

http://msdn.microsoft.com/en-us/library/system.threading.threadstart.aspxを参照してください。

于 2012-12-10T00:47:49.563 に答える
0

スレッドを使用してそれを行うことができます。私はc++をよく知らないので、申し訳ありません。しかし、私はあなたにC#で解決策を与えることができます

 public static void func1()
    {
        Application.Run(new Form1());
    }

   public static void func2()
    {
        Application.Run(new Form2());
    }

    static void Main()
    {
        Application.EnableVisualStyles();
        Application.SetCompatibleTextRenderingDefault(false);
        Thread th = new Thread(func1);
        Thread th1 = new Thread(func2);
        th.Start();
        th1.Start();
    }
于 2012-04-30T01:01:23.417 に答える