作为参数传递的对象只收到一个导航事件。我想在点击事件中接收它们,我应该使用什么来代替参数?
void App1::MainPage::btuN_Click(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e)
{
Variables^ data = (Variables^)e->OriginalSource;
if (data->sNotf!=nullptr)
Frame->Navigate(TypeName(BlankPage3::typeid), data);
}
我使用了 OriginalSource,但它没有用。有人会帮助我吗?感谢进阶