Coding/C++

C++ Form 띄우기 (폼 띄우기)

Miuna3 2016. 12. 10. 20:51
#include "stdafx.h"
#include "Form2.h"
#include "Form1.h"

폼 1,2 가 있다고 할때 다음과 같이 띄울수가 있다.

    System::Void button11_Click(System::Object^  sender, System::EventArgs^  e) {
        Form2^ frm = gcnew Form2;
        frm->Show(this);
    }