以下に詳細を説明します
クラスがあります
//MyDataHeaders.h
public ref class MyGlobalData {
//blah...blah...blah...
public: static System::Void Pty_NameCell( System::Object^ Sender, System::Windows::Forms::KeyEventArgs^ e) {
//blah..blah...
}
};
そしてForm2には次のようなサブがあります。
//Form2.h
public: static System::Void MySupplier_LstVew() {
//blah..blah..
}
Form2_load() {
textBox2->KeyDown += gcnew KeyEventHandler(MyGlobalData::Pty_NameCell); //OK
};
でもここで使いたい
textBox2->KeyDown +=delegate { gcnew KeyEventHandler(MyGlobalData::Pty_NameCell); MySupplier_LstVew(); };
textBox2-> Keydwon
一緒にイベントを宣言する方法は(MyGlobalData::Pty_NameCell),MySupplier_LstVew()
?出来ますか?
ありがとう