在我的点击处理程序
中 void uni81::MainPage::proceed_click(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e)
{
if (this->Frame != nullptr)
{
this->Frame->Navigate(TypeName(activity2::typeid));
}
}
我还添加了以下import / include语句
using namespace Windows::UI::Xaml::Interop;
#include "activity2.xaml.h"
但是当我运行程序时,我得到一个nullReferenceError。
我做错了什么?