Так что я просто пытаюсь показать форму из другого потока из потока GUI. На всю жизнь я не вижу, чтобы правильно настроить свои аргументы для вызова, который выдает мне сообщение об ошибке из catch:
«рассогласование параметров»
Есть идеи, как правильно настроить аргументы для передачи?
#pragma once
#include "ErrorSystemStop.h"
using namespace System;
using namespace System::Windows::Forms;
delegate DialogResult ShowErrorWindow(System::Windows::Forms::IWin32Window ^ parentForm );
void ThrowErrorWindow(System::String^ strErrorMessage, int iNumberOfSegments, System::Windows::Forms::IWin32Window ^ parentForm)
{
//Only throw if we need too.
if(!bErrorPause)
{
MainDisplay::ErrorSystemStop ^ stopMe = gcnew MainDisplay::ErrorSystemStop(strErrorMessage, iNumberOfSegments);
ShowErrorWindow ^ disp = gcnew ShowErrorWindow(( System::Windows::Forms::Form ^)stopMe, &MainDisplay::ErrorSystemStop::ShowDialog);
stopMe->TopMost = true;
try
{
cli::array<System::Windows::Forms::IWin32Window ^> ^ Args = gcnew cli::array<System::Windows::Forms::IWin32Window ^>(1);
Args[0] = parentForm;
stopMe->Invoke(disp,( System::Windows::Forms::Form ^)stopMe, gcnew array<System::Object ^>{Args});
}
catch(Exception ^e)
{
e->Message;
}
}
} //end ThrowErrorWindow
Я также пробовал:
array<Object^> ^ Args = {parentForm};
stopMe->Invoke(disp,(System::Windows::Forms::Form ^)stopMe, Args);
Спасибо,
Alikar