2012-04-18 13 views
1

以下が..私は次のような...サブを持って、私はクラスKeyEventArgsで2つの関数を一緒に扱う方法VC++ 2010?

//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イベントを0で宣言する方法一緒に? 可能ですか?

おかげ

答えて

0

はい、あなたは

textBox2->KeyDown += gcnew KeyEventHandler(MyGlobalData::Pty_NameCell); 
textBox2->KeyDown += gcnew KeyEventHandler(MySupplier_LstVew); 
+0

私は明確な取得...おかげで結合を行うことができます – user1328559

関連する問題