| 25 | } |
| 26 | |
| 27 | void ReloadConfirmationPage::ReloadButtonClick( |
| 28 | winrt::IInspectable const& sender, |
| 29 | winrt::RoutedEventArgs const& e) |
| 30 | { |
| 31 | UNREFERENCED_PARAMETER(sender); |
| 32 | UNREFERENCED_PARAMETER(e); |
| 33 | |
| 34 | this->m_Status = NanaBox::ReloadConfirmationStatus::Reload; |
| 35 | ::PostMessageW(this->m_WindowHandle, WM_CLOSE, 0, 0); |
| 36 | } |
| 37 | |
| 38 | void ReloadConfirmationPage::CancelButtonClick( |
| 39 | winrt::IInspectable const& sender, |
nothing calls this directly
no outgoing calls
no test coverage detected