0

我在 cppWinRT 空白应用程序的 Visual Studio 模板项目中工作。

我想做的是MainPage从类OnLaunched内的函数中调用定义的函数App

到目前为止,我的理论是我需要的是这些方面的东西:

MainPage* mainPageImpl = from_abi<BlankApp1::implementation::MainPage>(/*somehow get a pointer to the MainPage instance*/);
mainPageImpl->myFunction();

但是我不确定这是否是正确的方法。

4

1 回答 1

0

用于get_self将投影类转换为实现类。

MainPage* mainPageImpl = get_self<MainPage>(Window::Current().Content().try_as<Frame>().Content().try_as<BlankApp1::MainPage>());
mainPageImpl->myFunction();
于 2018-12-24T03:31:22.110 回答