You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
1.1 KiB

//It is applying double indentation
m_ApplicationView = AppC::ApplicationView::GetForCurrentView();
m_ViewConsolidateEvtToken = m_ApplicationView->Consolidated +=
ref new AppC::TypedEventHandler<AppC::ApplicationView^, AppC::ApplicationViewConsolidatedEventArgs^>(this, &FrameworkView::InternalOnViewConsolidated);
m_WindowActivatedEvtToken = m_CoreWindow->Activated +=
ref new AppC::TypedEventHandler<AppC::CoreWindow^, AppC::WindowActivatedEventArgs^>(this, &FrameworkView::InternalOnWindowActivated);
m_SizeChangedEvtToken = m_CoreWindow->SizeChanged +=
ref new AppC::TypedEventHandler<AppC::CoreWindow^, AppC::WindowSizeChangedEventArgs^>(this, &FrameworkView::InternalOnWindowSizeChanged);
m_VisibilityChangedEvtToken = m_CoreWindow->VisibilityChanged +=
ref new AppC::TypedEventHandler<AppC::CoreWindow^, AppC::VisibilityChangedEventArgs^>(this, &FrameworkView::InternalOnWindowVisibilityChanged);
m_WindowClosedEvtToken = m_CoreWindow->Closed +=
ref new AppC::TypedEventHandler<AppC::CoreWindow^, AppC::CoreWindowEventArgs^>(this, &FrameworkView::InternalOnWindowClosed);