gpt4 book ai didi

c++ - 从另一个函数更改表单 "visible"属性?

转载 作者:行者123 更新时间:2023-11-28 03:35:21 27 4
gpt4 key购买 nike

我需要从另一个函数更改 testAppGUI(testAppGUI 是一个表单)的可见属性。该函数位于单独的文件中,不在类中。

如果我尝试做

testAppGUI::Visible = false;

我只是得到错误

C2597: illegal reference to non-static member '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 中声明

最佳答案

如果您已经有了要隐藏的表单实例,则必须将对该表单的引用传递给要更改属性的函数。

您可以通过直接提供表单作为函数的参数来做到这一点,或者如果函数是类的成员,您可以将表单传递给类(和类的实例)(并将其存储为成员多变的)。其中哪一个更适合您取决于您​​的特定上下文,如果没有您的更多代码,我们将无法访问这些上下文。

注意:您的第一个代码片段与您的第二个代码片段冲突:在第一个代码片段中,您使用 form1 作为变量,在第二个代码片段中作为类型。如果您已经有了变量 form1,您只需设置它的属性即可:

form1->Visible = false;

关于c++ - 从另一个函数更改表单 "visible"属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11063153/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com