掲題の件、サイト(http://jeanne.wankuma.com/tips/cpp/form/show.html)を確認しながらフォームを閉じようと試みたのですがコンパイルエラーとなってしまいます。
下記に詳しく記載いたします。
#pragma once namespace Prefectures { 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> /// MyForm の概要 /// </summary> public ref class MyForm : public System::Windows::Forms::Form { public: MyForm(void) { InitializeComponent(); // //TODO: ここにコンストラクター コードを追加します // } protected: /// <summary> /// 使用中のリソースをすべてクリーンアップします。 /// </summary> ~MyForm() { if (components) { delete components; } } private: System::Windows::Forms::Button^ button1; private: System::Windows::Forms::Button^ button2; protected: private: /// <summary> /// 必要なデザイナー変数です。 /// </summary> System::ComponentModel::Container ^components; #pragma region Windows Form Designer generated code /// <summary> /// デザイナー サポートに必要なメソッドです。このメソッドの内容を /// コード エディターで変更しないでください。 /// </summary> void InitializeComponent(void) { this->button1 = (gcnew System::Windows::Forms::Button()); this->button2 = (gcnew System::Windows::Forms::Button()); this->SuspendLayout(); // // button1 // this->button1->Location = System::Drawing::Point(25, 54); this->button1->Name = L"button1"; this->button1->Size = System::Drawing::Size(186, 63); this->button1->TabIndex = 0; this->button1->Text = L"button1"; this->button1->UseVisualStyleBackColor = true; this->button1->Click += gcnew System::EventHandler(this, &MyForm::Button1_Click); // // button2 // this->button2->Location = System::Drawing::Point(98, 161); this->button2->Name = L"button2"; this->button2->Size = System::Drawing::Size(75, 23); this->button2->TabIndex = 1; this->button2->Text = L"button2"; this->button2->UseVisualStyleBackColor = true; // // MyForm // this->AutoScaleDimensions = System::Drawing::SizeF(6, 12); this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font; this->ClientSize = System::Drawing::Size(284, 261); this->Controls->Add(this->button2); this->Controls->Add(this->button1); this->Name = L"MyForm"; this->Text = L"MyForm"; this->ResumeLayout(false); } #pragma endregion private: System::Void Button1_Click(System::Object^ sender, System::EventArgs^ e) { MyForm^ MyForm = gcnew MyForm(); MyForm->Close(); } }; }
上記ソースコードの以下の箇所で「E0079型指定子が必要です」となってしまいます。
MyForm^ MyForm = gcnew MyForm();
ご教授のほどよろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。