gpt4 book ai didi

c++ - 如何在 KeyEventArgs...VC++2010 中一起处理两个函数?

转载 作者:太空宇宙 更新时间:2023-11-04 14:17:17 28 4
gpt4 key购买 nike

下面会详细描述

我有课

//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 中我有一个 Sub...如下所示..

//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(); };

如何与(MyGlobalData::Pty_NameCell),MySupplier_LstVew()一起声明textBox2->Keydwon事件?可能吗?

谢谢

最佳答案

是的,你可以做到

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

关于c++ - 如何在 KeyEventArgs...VC++2010 中一起处理两个函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10207892/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com