testAppGUI (testAppGUI はフォーム) の可視プロパティを別の関数から変更する必要があります。関数は別のファイルにあり、クラスにはありません。
やろうとしたら
testAppGUI::Visible = false;
私はちょうどエラーが発生します
C2597: 非静的メンバー 'System::Windows::Forms::Control::Visible' への不正な参照
そして、このようなオブジェクトのインスタンスを作成しようとすると
testAppGUI^ formProperty = gcnew testAppGUI;
そして、する
formProperty->Visible = false; nothing happens?!
誰でもこれを行う方法を説明できますか?
前もって感謝します。
編集:ここにいくつかのコードがあります
testApp.cpp 内
#include "stdafx.h"
#include "testAppGUI.h"
using namespace testApp;
[STAThreadAttribute]
int main(array<System::String ^> ^args)
{
Application::EnableVisualStyles();
Application::SetCompatibleTextRenderingDefault(false);
Application::Run(gcnew testAppGUI());
return 0;
}
testAppGUI.h 内
#pragma once
#include "HideAndShowGUI.h"
namespace testApp {
using namespace System;
using namespace System::ComponentModel;
using namespace System::Collections;
using namespace System::Windows::Forms;
using namespace System::Data;
using namespace System::Drawing;
using namespace System::IO;
public ref class testAppGUI : public System::Windows::Forms::Form
{
public:
testAppGUI(void)
{
InitializeComponent();
}
protected:
~testAppGUI()
{
if (components)
{
delete components;
}
}
private: System::Windows::Forms::Button^ button1;
...
#pragma region Windows Form Designer generated code
void InitializeComponent(void)
{
...
}
#pragma endregion
private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e) {
hideGUI();
}
};
}
HideAndShowGUI.cpp
#include "stdafx.h"
#include "testAppGUI.h"
using namespace testApp;
void hideGUI(){
//Hide the form, this function should be able to be called by all functions in the program. Not just from forms!
}
void showGUI(){
//Unhide/Show the form, this function should be able to be called by all functions in the program. Not just from forms!
}
hideGUI と showGUI は HideAndShowGUI.h で宣言されています。