0

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 で宣言されています。

4

1 に答える 1

2

非表示にするフォームのインスタンスが既にある場合は、そのフォームへの参照を、プロパティを変更する関数に渡す必要があります。

これを行うには、フォームを関数のパラメーターとして直接指定するか、関数がクラスのメンバーである場合は、フォームをクラス (およびインスタンス) に渡す (そしてメンバー変数として格納する) ことができます。これらのうちどれがより適切であるかは、特定のコンテキストに依存します。これには、コードを追加しないとアクセスできません。

:最初のスニペットは2番目のスニペットと競合しています。最初のスニペットではform1変数として使用し、2番目のスニペットでは型として使用しています。変数がすでにある場合は、form1そのプロパティを設定するだけです。

form1->Visible = false;
于 2012-06-16T12:14:46.307 に答える