Как вы создаете глобальный объект в визуальной форме окна C ++

Я новичок в использовании Microsoft C ++ Microsoft visual studio и пытаюсь понять, как создать глобальный объект в формах Windows, чтобы я мог ссылаться на него позже в нескольких функциях. Тип объекта называется Picture. Ниже приведен код, который у меня есть до сих пор.
Примечание: название проекта Testing_ver2

GUIInterface.h

#pragma once
namespace Testing_ver2 {

using namespace System;
using namespace System::ComponentModel;
using namespace System::Collections;
using namespace System::Windows::Forms;
using namespace System::Data;
using namespace System::Drawing;

/// <summary>
/// Summary for GUIInterface
/// </summary>
public ref class GUIInterface : public System::Windows::Forms::Form
{public:
GUIInterface(void)
{
InitializeComponent();
//
//TODO: Add the constructor code here
//
}

protected:
/// <summary>
/// Clean up any resources being used.
/// </summary>
~GUIInterface()
{
if (components)
{
delete components;
}
}
private: System::Windows::Forms::PictureBox^  pictureBox1;
protected:

private:
/// <summary>
/// Required designer variable.
/// </summary>
System::ComponentModel::Container ^components;//This Is were I'm trying to implement the picture
#include "Picture.h"
Picture pic1;
#pragma region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
void InitializeComponent(void)
{
this->pictureBox1 = (gcnew System::Windows::Forms::PictureBox());
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->pictureBox1))->BeginInit();
this->SuspendLayout();
//
// pictureBox1
//
this->pictureBox1->Location = System::Drawing::Point(611, 201);
this->pictureBox1->Name = L"pictureBox1";
this->pictureBox1->Size = System::Drawing::Size(100, 50);
this->pictureBox1->TabIndex = 0;
this->pictureBox1->TabStop = false;
//
// GUIInterface
//
this->AutoScaleDimensions = System::Drawing::SizeF(6, 13);
this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
this->ClientSize = System::Drawing::Size(926, 546);
this->Controls->Add(this->pictureBox1);
this->Name = L"GUIInterface";
this->Text = L"GUIInterface";
(cli::safe_cast<System::ComponentModel::ISupportInitialize^  >(this->pictureBox1))->EndInit();
this->ResumeLayout(false);

}
#pragma endregion};
}

Picture.h

 //This is used to hold the name of the picture, the path to it, and if it is picked in the viewer
#include <string>

class Picture
{
public:
Picture(){};  //default constructor

Picture(std::string newName, std::string newPath, bool newPicked)
{
strName = newName;
strPath = newPath;
boolPicked = newPicked;
}

void setName(std::string newName)
{
strName = newName;
}

void setPath(std::string newPath)
{
strPath = newPath;
}void setPicked(bool newPicked)
{
boolPicked = newPicked;
}

std::string getName()
{
return strName;
}
std::string getPath()
{
return strPath;
}
bool getPicked()
{
return boolPicked;
}

private:
std::string strName;
std::string strPath;
bool boolPicked;
};

GUIInterface.cpp

#include "GUIInterface.h"
using namespace System;
using namespace System ::Windows::Forms;

[STAThread]
void main(array<String^>^ arg) {
Application::EnableVisualStyles();
Application::SetCompatibleTextRenderingDefault(false);

Testing_ver2::GUIInterface form;
Application::Run(%form);
}

Одна из текущих ошибок с приведенным выше кодом заключается в том, что член управляемого класса не может относиться к неуправляемому типу класса, это вызывается в строке с «Picture pic1;» в GUIInterface.h, где я пытался создать вызов объекта pic1.

Буду признателен за любую оказанную помощь.

0

Решение

Задача ещё не решена.

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]