1

以下に詳細を説明します

クラスがあります

//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()?出来ますか?

ありがとう

4

1 に答える 1

0

はい、できます

textBox2->KeyDown += gcnew KeyEventHandler(MyGlobalData::Pty_NameCell);
textBox2->KeyDown += gcnew KeyEventHandler(MySupplier_LstVew);
于 2012-04-18T11:01:57.303 に答える