| 126 | } |
| 127 | |
| 128 | void MainWindowControl::RestartVirtualMachineButtonClick( |
| 129 | winrt::IInspectable const& sender, |
| 130 | winrt::RoutedEventArgs const& e) |
| 131 | { |
| 132 | UNREFERENCED_PARAMETER(sender); |
| 133 | UNREFERENCED_PARAMETER(e); |
| 134 | |
| 135 | ::PostMessageW( |
| 136 | this->m_WindowHandle, |
| 137 | WM_COMMAND, |
| 138 | MAKEWPARAM( |
| 139 | NanaBox::MainWindowCommands::RestartVirtualMachine, |
| 140 | BN_CLICKED), |
| 141 | 0); |
| 142 | } |
| 143 | |
| 144 | void MainWindowControl::VirtualMachineSettingsButtonClick( |
| 145 | winrt::IInspectable const& sender, |
nothing calls this directly
no outgoing calls
no test coverage detected