我在 cppWinRT 空白应用程序的 Visual Studio 模板项目中工作。
我想做的是MainPage
从类OnLaunched
内的函数中调用定义的函数App
。
到目前为止,我的理论是我需要的是这些方面的东西:
MainPage* mainPageImpl = from_abi<BlankApp1::implementation::MainPage>(/*somehow get a pointer to the MainPage instance*/);
mainPageImpl->myFunction();
但是我不确定这是否是正确的方法。