| 90 | } |
| 91 | |
| 92 | void MainWindowControl::FullScreenButtonClick( |
| 93 | winrt::IInspectable const& sender, |
| 94 | winrt::RoutedEventArgs const& e) |
| 95 | { |
| 96 | UNREFERENCED_PARAMETER(sender); |
| 97 | UNREFERENCED_PARAMETER(e); |
| 98 | |
| 99 | ::PostMessageW( |
| 100 | this->m_WindowHandle, |
| 101 | WM_COMMAND, |
| 102 | MAKEWPARAM( |
| 103 | NanaBox::MainWindowCommands::EnterFullScreen, |
| 104 | BN_CLICKED), |
| 105 | 0); |
| 106 | } |
| 107 | |
| 108 | void MainWindowControl::PauseVirtualMachineButtonClick( |
| 109 | winrt::IInspectable const& sender, |
nothing calls this directly
no outgoing calls
no test coverage detected