问题描述
在vc.net项目下,窗口是通过windows api绘制的。
此时,我在我的项目中添加了一个类testClass,这是一个窗口。
通常你应该写这样的代码:
TestClass ^ frmTest = gcnew testClass(filepath);
FrmTest - > eReLoadFile + = gcnew EventHandler(this,& Form1 :: frmTest_eReLoadFile);
FrmTest - > ShowDialog();
但是如何表达Win32应用程序?
我尝试过的方法:
Under a vc.net project, windows are drawn through windows api.
At this point, I added a class testClass to my project, which is a window.
Normally you should write code like this:
TestClass ^ frmTest = gcnew testClass (filepath);
FrmTest - > eReLoadFile += gcnew EventHandler (this, & Form1:: frmTest_eReLoadFile);
FrmTest - > ShowDialog ();
But how should Win32 applications be expressed?
What I have tried:
TestClass ^ frmTest = gcnew testClass (filepath);
FrmTest - > eReLoadFile += gcnew EventHandler (this, & Form1:: frmTest_eReLoadFile);
FrmTest - > ShowDialog ();
Compile error
Error 413 Error C2061: Syntax Error: Identifier "testClass"
推荐答案
TestClass ^ frmTest = gcnew TestClass (filepath);
frmTest - > eReLoadFile += gcnew EventHandler (this, & Form1:: frmTest_eReLoadFile);
frmTest - > ShowDialog ();
这不喜欢编译器!!!
更加注重细节。每一位都很重要; - )
That doesnt like the compiler!!!
Pay more attention to details. Every bit counts ;-)
这篇关于询问windows API应用程序如何调用类对象的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!